(t *testing.T)
| 13 | ) |
| 14 | |
| 15 | func TestCollectionRefHelpers(t *testing.T) { |
| 16 | client, _ := newClient(t) |
| 17 | ref := client.Collections().CreateReference("foo", "bar") |
| 18 | assert.Equal(t, "SO:foo:bar", ref) |
| 19 | } |
| 20 | |
| 21 | func TestUpsertCollectionObjects(t *testing.T) { |
| 22 | ctx := context.Background() |
nothing calls this directly
no test coverage detected