Skip to content
Snippets Groups Projects

WIP: Develop

Merged Malte Bauch requested to merge develop into master
17 files
+ 1146
38
Compare changes
  • Side-by-side
  • Inline
Files
17
+ 10
6
// Code generated by mockery v2.11.0. DO NOT EDIT.
// Code generated by mockery v2.14.0. DO NOT EDIT.
package mocks
package mocks
import (
import (
testing "testing"
time "time"
pnd "code.fbi.h-da.de/danet/gosdn/api/go/gosdn/pnd"
pnd "code.fbi.h-da.de/danet/gosdn/api/go/gosdn/pnd"
mock "github.com/stretchr/testify/mock"
mock "github.com/stretchr/testify/mock"
time "time"
uuid "github.com/google/uuid"
uuid "github.com/google/uuid"
ygot "github.com/openconfig/ygot/ygot"
ygot "github.com/openconfig/ygot/ygot"
@@ -124,9 +122,15 @@ func (_m *Change) State() pnd.ChangeState {
@@ -124,9 +122,15 @@ func (_m *Change) State() pnd.ChangeState {
return r0
return r0
}
}
// NewChange creates a new instance of Change. It also registers a cleanup function to assert the mocks expectations.
type mockConstructorTestingTNewChange interface {
func NewChange(t testing.TB) *Change {
mock.TestingT
 
Cleanup(func())
 
}
 
 
// NewChange creates a new instance of Change. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
 
func NewChange(t mockConstructorTestingTNewChange) *Change {
mock := &Change{}
mock := &Change{}
 
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
t.Cleanup(func() { mock.AssertExpectations(t) })
Loading