(t *testing.T)
| 437 | } |
| 438 | |
| 439 | func TestFilePartition(t *testing.T) { |
| 440 | buf := NewPartition(NewFilePool(1024, "")) |
| 441 | checkCap(t, buf, math.MaxInt64) |
| 442 | runPerfectSeries(t, buf) |
| 443 | buf.Reset() |
| 444 | } |
| 445 | |
| 446 | func TestSmallMulti(t *testing.T) { |
| 447 | if empty := NewMulti(); empty != nil { |
nothing calls this directly
no test coverage detected
searching dependent graphs…