(t *testing.T)
| 12 | ) |
| 13 | |
| 14 | func TestUserRefHelpers(t *testing.T) { |
| 15 | client, _ := newClient(t) |
| 16 | ref := client.Users().CreateReference("bar") |
| 17 | assert.Equal(t, "SU:bar", ref) |
| 18 | } |
| 19 | |
| 20 | func TestGetUser(t *testing.T) { |
| 21 | ctx := context.Background() |
nothing calls this directly
no test coverage detected