NewStringSet() is called and the result is validated.
(t *testing.T)
| 27 | |
| 28 | // NewStringSet() is called and the result is validated. |
| 29 | func TestNewStringSet(t *testing.T) { |
| 30 | if ss := NewStringSet(); !ss.IsEmpty() { |
| 31 | t.Fatalf("expected: true, got: false") |
| 32 | } |
| 33 | } |
| 34 | |
| 35 | // CreateStringSet() is called and the result is validated. |
| 36 | func TestCreateStringSet(t *testing.T) { |
nothing calls this directly
no test coverage detected