146
147
// GetNamespaceWithOptions mocks base method.
148
>
func (m *MockRegistry) GetNamespaceWithOptions(name Name, opts GetNamespaceOptions) (*Namespace, error) {
registry_mock.go
149
>
m.ctrl.T.Helper()
150
>
ret := m.ctrl.Call(m, "GetNamespaceWithOptions", name, opts)
151
>
ret0, _ := ret[0].(*Namespace)
152
>
ret1, _ := ret[1].(error)
153
>
return ret0, ret1
154
>
}
155
156
// GetNamespaceWithOptions indicates an expected call of GetNamespaceWithOptions.
157
>
func (mr *MockRegistryMockRecorder) GetNamespaceWithOptions(name, opts any) *gomock.Call {
registry_mock.go
158
>
mr.mock.ctrl.T.Helper()
159
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetNamespaceWithOptions", reflect.TypeOf((*MockRegistry)(nil).GetNamespaceWithOptions), name, opts)
160
>
}
161
162
// GetPingChecks mocks base method.