(t *testing.T)
| 18 | } |
| 19 | |
| 20 | func TestGetUser(t *testing.T) { |
| 21 | ctx := context.Background() |
| 22 | client, requester := newClient(t) |
| 23 | |
| 24 | _, err := client.Users().Get(ctx, "id1") |
| 25 | require.NoError(t, err) |
| 26 | testRequest(t, requester.req, http.MethodGet, "https://api.stream-io-api.com/api/v1.0/user/id1/?api_key=key", "") |
| 27 | } |
| 28 | |
| 29 | func TestDeleteUser(t *testing.T) { |
| 30 | ctx := context.Background() |
nothing calls this directly
no test coverage detected