(t *testing.T)
| 333 | } |
| 334 | |
| 335 | func TestSearchService_Issues_coverage(t *testing.T) { |
| 336 | t.Parallel() |
| 337 | client, _, _ := setup(t) |
| 338 | |
| 339 | ctx := t.Context() |
| 340 | |
| 341 | const methodName = "Issues" |
| 342 | testBadOptions(t, methodName, func() (err error) { |
| 343 | _, _, err = client.Search.Issues(ctx, "\n", nil) |
| 344 | return err |
| 345 | }) |
| 346 | } |
| 347 | |
| 348 | func TestSearchService_Issues_withQualifiersNoOpts(t *testing.T) { |
| 349 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…