(t *testing.T)
| 156 | } |
| 157 | |
| 158 | func TestOrderedSetCardinality(t *testing.T) { |
| 159 | s1 := NewOrderedSetFromSlice([]string{"a", "b"}) |
| 160 | |
| 161 | assert.Equal(t, 2, s1.Cardinality(), |
| 162 | "tools: expected cardinality of [a, b] to equal 2") |
| 163 | } |
| 164 | |
| 165 | func TestOrderedSetIter(t *testing.T) { |
| 166 | s1 := NewOrderedSetFromSlice([]string{"a", "b", "c"}) |
nothing calls this directly
no test coverage detected