azure-container-networking/testutils/netapi_mock.go

13 строки
233 B
Go

//go:build !ignore_uncovered
// +build !ignore_uncovered
package testutils
type NetApiMock struct {
err error
}
func (netApi *NetApiMock) AddExternalInterface(ifName, subnet, nicType string) error { //nolint
return netApi.err
}