()
| 350 | } |
| 351 | |
| 352 | func (s *OrgTestSuite) TestListOrganizations() { |
| 353 | orgs, err := s.Store.ListOrganizations(s.adminCtx, params.OrganizationFilter{}) |
| 354 | |
| 355 | s.Require().Nil(err) |
| 356 | garmTesting.EqualDBEntityByName(s.T(), s.Fixtures.Orgs, orgs) |
| 357 | } |
| 358 | |
| 359 | func (s *OrgTestSuite) TestListOrganizationsWithFilters() { |
| 360 | org, err := s.Store.CreateOrganization( |
nothing calls this directly
no test coverage detected