| 9 | ) |
| 10 | |
| 11 | type FakeCreator struct { |
| 12 | CreateRouteStub func(string, string, int, bool, models.DomainFields, models.SpaceFields) (models.Route, error) |
| 13 | createRouteMutex sync.RWMutex |
| 14 | createRouteArgsForCall []struct { |
| 15 | arg1 string |
| 16 | arg2 string |
| 17 | arg3 int |
| 18 | arg4 bool |
| 19 | arg5 models.DomainFields |
| 20 | arg6 models.SpaceFields |
| 21 | } |
| 22 | createRouteReturns struct { |
| 23 | result1 models.Route |
| 24 | result2 error |
| 25 | } |
| 26 | createRouteReturnsOnCall map[int]struct { |
| 27 | result1 models.Route |
| 28 | result2 error |
| 29 | } |
| 30 | invocations map[string][][]interface{} |
| 31 | invocationsMutex sync.RWMutex |
| 32 | } |
| 33 | |
| 34 | func (fake *FakeCreator) CreateRoute(arg1 string, arg2 string, arg3 int, arg4 bool, arg5 models.DomainFields, arg6 models.SpaceFields) (models.Route, error) { |
| 35 | fake.createRouteMutex.Lock() |
nothing calls this directly
no outgoing calls
no test coverage detected