(t *testing.T)
| 206 | } |
| 207 | |
| 208 | func TestLargeStringReads(t *testing.T) { |
| 209 | var buf Buffer |
| 210 | for i := 3; i < 30; i += 3 { |
| 211 | s := fillString(t, "TestLargeReads (1)", &buf, "", 5, testString[0:len(testString)/i]) |
| 212 | empty(t, "TestLargeReads (2)", &buf, s, make([]byte, len(testString))) |
| 213 | } |
| 214 | check(t, "TestLargeStringReads (3)", &buf, "") |
| 215 | } |
| 216 | |
| 217 | func TestLargeByteReads(t *testing.T) { |
| 218 | var buf Buffer |
nothing calls this directly
no test coverage detected