Skip to content
Snippets Groups Projects

"Overhaul Architecture"

Merged Ghost User requested to merge 67-overhaul-architecture into develop
3 files
+ 83
39
Compare changes
  • Side-by-side
  • Inline
Files
3
+ 2
2
@@ -8,7 +8,7 @@ import (
@@ -8,7 +8,7 @@ import (
func TestDevice_Add(t *testing.T) {
func TestDevice_Add(t *testing.T) {
type fields struct {
type fields struct {
Device ygot.GoStruct
ygot.GoStruct
SBI SouthboundInterface
SBI SouthboundInterface
Config DeviceConfig
Config DeviceConfig
Transport Transport
Transport Transport
@@ -26,7 +26,7 @@ func TestDevice_Add(t *testing.T) {
@@ -26,7 +26,7 @@ func TestDevice_Add(t *testing.T) {
for _, tt := range tests {
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
t.Run(tt.name, func(t *testing.T) {
d := Device{
d := Device{
Device: tt.fields.Device,
GoStruct: tt.fields.SBI.Schema().Root,
SBI: tt.fields.SBI,
SBI: tt.fields.SBI,
Config: tt.fields.Config,
Config: tt.fields.Config,
Transport: tt.fields.Transport,
Transport: tt.fields.Transport,
Loading