97
98
// GetNamespace mocks base method.
99
>
func (m *MockPersistence) GetNamespace(arg0 context.Context, arg1 *persistence.GetNamespaceRequest) (*persistence.GetNamespaceResponse, error) {
registry_mock.go
100
>
m.ctrl.T.Helper()
101
>
ret := m.ctrl.Call(m, "GetNamespace", arg0, arg1)
102
>
ret0, _ := ret[0].(*persistence.GetNamespaceResponse)
103
>
ret1, _ := ret[1].(error)
104
>
return ret0, ret1
105
>
}
106
107
// GetNamespace indicates an expected call of GetNamespace.
108
>
func (mr *MockPersistenceMockRecorder) GetNamespace(arg0, arg1 any) *gomock.Call {
registry_mock.go
109
>
mr.mock.ctrl.T.Helper()
110
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetNamespace", reflect.TypeOf((*MockPersistence)(nil).GetNamespace), arg0, arg1)
111
>
}
112
113
// ListNamespaces mocks base method.