(t *testing.T, buf Buffer, correctCap int64)
| 546 | } |
| 547 | |
| 548 | func checkCap(t *testing.T, buf Buffer, correctCap int64) { |
| 549 | if buf.Cap() != correctCap { |
| 550 | t.Error("Buffer cap is incorrect", buf.Cap(), correctCap) |
| 551 | } |
| 552 | } |
| 553 | |
| 554 | type bigBuffer struct{} |
| 555 |
no test coverage detected
searching dependent graphs…