(t *testing.T)
| 277 | } |
| 278 | |
| 279 | func TestActivityService_Unstar_invalidID(t *testing.T) { |
| 280 | t.Parallel() |
| 281 | client, _, _ := setup(t) |
| 282 | |
| 283 | ctx := t.Context() |
| 284 | _, err := client.Activity.Unstar(ctx, "%", "%") |
| 285 | testURLParseError(t, err) |
| 286 | } |
| 287 | |
| 288 | func TestStarredRepository_Marshal(t *testing.T) { |
| 289 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…