| 9 | ) |
| 10 | |
| 11 | type mockUsersClient struct { |
| 12 | getAccountFn func(*users.GetAccountArg) (*users.BasicAccount, error) |
| 13 | getCurrentAccountFn func() (*users.FullAccount, error) |
| 14 | getSpaceUsageFn func() (*users.SpaceUsage, error) |
| 15 | } |
| 16 | |
| 17 | func (m *mockUsersClient) GetAccount(arg *users.GetAccountArg) (*users.BasicAccount, error) { |
| 18 | if m.getAccountFn != nil { |
nothing calls this directly
no outgoing calls
no test coverage detected