in mock/platform/mock_platform_service.go [251:278]
func (_m *PlatformService) GetSecretData(namespace string, name string) (map[string][]byte, error) {
ret := _m.Called(namespace, name)
if len(ret) == 0 {
panic("no return value specified for GetSecretData")
}
var r0 map[string][]byte
var r1 error
if rf, ok := ret.Get(0).(func(string, string) (map[string][]byte, error)); ok {
return rf(namespace, name)
}
if rf, ok := ret.Get(0).(func(string, string) map[string][]byte); ok {
r0 = rf(namespace, name)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(map[string][]byte)
}
}
if rf, ok := ret.Get(1).(func(string, string) error); ok {
r1 = rf(namespace, name)
} else {
r1 = ret.Error(1)
}
return r0, r1
}