(t *testing.T)
| 262 | } |
| 263 | |
| 264 | func testCompressedSetNil(t *testing.T) { |
| 265 | set := CompressedSet(nil) |
| 266 | |
| 267 | for it := set.Iter(); it.Next(); { |
| 268 | t.Errorf("too many ids returned by the iterator of a nil compressed set: %s", it.KSUID) |
| 269 | } |
| 270 | } |
| 271 | |
| 272 | func testCompressedSetConcat(t *testing.T) { |
| 273 | ksuids := [100]KSUID{} |
nothing calls this directly
no test coverage detected
searching dependent graphs…