(t *testing.T)
| 54 | } |
| 55 | |
| 56 | func TestTeamsService_ListTeams_invalidOrg(t *testing.T) { |
| 57 | t.Parallel() |
| 58 | client, _, _ := setup(t) |
| 59 | |
| 60 | ctx := t.Context() |
| 61 | _, _, err := client.Teams.ListTeams(ctx, "%", nil) |
| 62 | testURLParseError(t, err) |
| 63 | } |
| 64 | |
| 65 | func TestTeamsService_GetTeamByID(t *testing.T) { |
| 66 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…