()
| 197 | } |
| 198 | |
| 199 | func (s *OrgTestSuite) TestCreateOrganizationEmptyParams() { |
| 200 | _, err := s.Runner.CreateOrganization(s.Fixtures.AdminContext, params.CreateOrgParams{}) |
| 201 | |
| 202 | s.Require().Regexp("validating params: missing org name", err.Error()) |
| 203 | } |
| 204 | |
| 205 | func (s *OrgTestSuite) TestCreateOrganizationMissingCredentials() { |
| 206 | s.Fixtures.CreateOrgParams.CredentialsName = notExistingCredentialsName |
nothing calls this directly
no test coverage detected