| 14 | ) |
| 15 | |
| 16 | type OrganizationBuilder struct { |
| 17 | t *testing.T |
| 18 | db database.Store |
| 19 | seed database.Organization |
| 20 | delete bool |
| 21 | allUsersAllowance int32 |
| 22 | members []uuid.UUID |
| 23 | groups map[database.Group][]uuid.UUID |
| 24 | } |
| 25 | |
| 26 | func Organization(t *testing.T, db database.Store) OrganizationBuilder { |
| 27 | return OrganizationBuilder{ |
nothing calls this directly
no outgoing calls
no test coverage detected