(t *testing.T)
| 243 | } |
| 244 | |
| 245 | func TestActivityService_Star_invalidID(t *testing.T) { |
| 246 | t.Parallel() |
| 247 | client, _, _ := setup(t) |
| 248 | |
| 249 | ctx := t.Context() |
| 250 | _, err := client.Activity.Star(ctx, "%", "%") |
| 251 | testURLParseError(t, err) |
| 252 | } |
| 253 | |
| 254 | func TestActivityService_Unstar(t *testing.T) { |
| 255 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…