(t *testing.T)
| 124 | } |
| 125 | |
| 126 | func TestGetCollectionObject(t *testing.T) { |
| 127 | ctx := context.Background() |
| 128 | client, requester := newClient(t) |
| 129 | |
| 130 | _, err := client.Collections().Get(ctx, "test-get-one", "id1") |
| 131 | require.NoError(t, err) |
| 132 | testRequest(t, requester.req, http.MethodGet, "https://api.stream-io-api.com/api/v1.0/collections/test-get-one/id1/?api_key=key", "") |
| 133 | } |
| 134 | |
| 135 | func TestDeleteCollectionObject(t *testing.T) { |
| 136 | ctx := context.Background() |
nothing calls this directly
no test coverage detected