| 8 | ) |
| 9 | |
| 10 | type FakeUserPrinter struct { |
| 11 | PrintUsersStub func(string, string) |
| 12 | printUsersMutex sync.RWMutex |
| 13 | printUsersArgsForCall []struct { |
| 14 | arg1 string |
| 15 | arg2 string |
| 16 | } |
| 17 | invocations map[string][][]interface{} |
| 18 | invocationsMutex sync.RWMutex |
| 19 | } |
| 20 | |
| 21 | func (fake *FakeUserPrinter) PrintUsers(arg1 string, arg2 string) { |
| 22 | fake.printUsersMutex.Lock() |
nothing calls this directly
no outgoing calls
no test coverage detected