(t *testing.T)
| 209 | } |
| 210 | |
| 211 | func TestActivityService_IsStarred_invalidID(t *testing.T) { |
| 212 | t.Parallel() |
| 213 | client, _, _ := setup(t) |
| 214 | |
| 215 | ctx := t.Context() |
| 216 | _, _, err := client.Activity.IsStarred(ctx, "%", "%") |
| 217 | testURLParseError(t, err) |
| 218 | } |
| 219 | |
| 220 | func TestActivityService_Star(t *testing.T) { |
| 221 | t.Parallel() |
nothing calls this directly
no test coverage detected
searching dependent graphs…