Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
package nucleus
import "testing"
func TestOpenConfig_SbiIdentifier(t *testing.T) {
type fields struct {
transport Transport
}
tests := []struct {
name string
fields fields
want string
}{
{name: "default", want: "openconfig"},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
oc := &OpenConfig{
transport: tt.fields.transport,
}
if got := oc.SbiIdentifier(); got != tt.want {
t.Errorf("SbiIdentifier() = %v, want %v", got, tt.want)
}
})
}
}
func TestOpenConfig_OpenconfigInterfaces(t *testing.T) {
type fields struct {
transport Transport
}
type args struct {
device Device
}
tests := []struct {
name string
fields fields
args args
}{
// TODO: Add test cases.
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
oc := &OpenConfig{
transport: tt.fields.transport,
}
oc.OpenconfigInterfaces(tt.args.device)
})
}