(t *testing.T)
| 243 | } |
| 244 | |
| 245 | func TestSearchService_Commits_coverage(t *testing.T) { |
| 246 | t.Parallel() |
| 247 | client, _, _ := setup(t) |
| 248 | |
| 249 | ctx := t.Context() |
| 250 | |
| 251 | const methodName = "Commits" |
| 252 | testBadOptions(t, methodName, func() (err error) { |
| 253 | _, _, err = client.Search.Commits(ctx, "\n", nil) |
| 254 | return err |
| 255 | }) |
| 256 | } |
| 257 | |
| 258 | func TestSearchService_Issues(t *testing.T) { |
| 259 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…