(t *testing.T)
| 146 | } |
| 147 | |
| 148 | func TestIssueImportService_Create_invalidOwner(t *testing.T) { |
| 149 | t.Parallel() |
| 150 | client, _, _ := setup(t) |
| 151 | |
| 152 | ctx := t.Context() |
| 153 | _, _, err := client.IssueImport.Create(ctx, "%", "r", nil) |
| 154 | testURLParseError(t, err) |
| 155 | } |
| 156 | |
| 157 | func TestIssueImportService_CheckStatus(t *testing.T) { |
| 158 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…