(t *testing.T)
| 57 | } |
| 58 | |
| 59 | func TestSearchService_Repositories_coverage(t *testing.T) { |
| 60 | t.Parallel() |
| 61 | client, _, _ := setup(t) |
| 62 | |
| 63 | ctx := t.Context() |
| 64 | |
| 65 | const methodName = "Repositories" |
| 66 | testBadOptions(t, methodName, func() (err error) { |
| 67 | _, _, err = client.Search.Repositories(ctx, "\n", nil) |
| 68 | return err |
| 69 | }) |
| 70 | } |
| 71 | |
| 72 | func TestSearchService_RepositoriesTextMatch(t *testing.T) { |
| 73 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…