CreateStringSet() is called and the result is validated.
(t *testing.T)
| 34 | |
| 35 | // CreateStringSet() is called and the result is validated. |
| 36 | func TestCreateStringSet(t *testing.T) { |
| 37 | ss := CreateStringSet("foo") |
| 38 | if str := ss.String(); str != `[foo]` { |
| 39 | t.Fatalf("expected: %s, got: %s", `["foo"]`, str) |
| 40 | } |
| 41 | } |
| 42 | |
| 43 | // CopyStringSet() is called and the result is validated. |
| 44 | func TestCopyStringSet(t *testing.T) { |
nothing calls this directly
no test coverage detected