in mock/platform/mock_platform_service.go [156:188]
func (_m *PlatformService) GetExternalEndpoint(namespace string, name string) (string, string, error) {
ret := _m.Called(namespace, name)
if len(ret) == 0 {
panic("no return value specified for GetExternalEndpoint")
}
var r0 string
var r1 string
var r2 error
if rf, ok := ret.Get(0).(func(string, string) (string, string, error)); ok {
return rf(namespace, name)
}
if rf, ok := ret.Get(0).(func(string, string) string); ok {
r0 = rf(namespace, name)
} else {
r0 = ret.Get(0).(string)
}
if rf, ok := ret.Get(1).(func(string, string) string); ok {
r1 = rf(namespace, name)
} else {
r1 = ret.Get(1).(string)
}
if rf, ok := ret.Get(2).(func(string, string) error); ok {
r2 = rf(namespace, name)
} else {
r2 = ret.Error(2)
}
return r0, r1, r2
}