()
| 25 | type fakeAPIStore struct { |
| 26 | orgs map[string]*configstore.Org |
| 27 | users map[string]*configstore.OrgUser |
| 28 | warehouses map[string]*configstore.ManagedWarehouse |
| 29 | teams map[string]map[int64]*configstore.OrgTeam |
| 30 | grants map[string][]*configstore.ServiceGrant // orgID -> grants (insertion order) |
| 31 | revokedGrants []string // credential_ids revoked through the store fake |
| 32 | reloadSnapshotCalls int |
| 33 | reloadSnapshotErr error |
| 34 | } |
| 35 | |
| 36 | func newFakeAPIStore() *fakeAPIStore { |
no outgoing calls
no test coverage detected