(t *testing.T)
| 180 | } |
| 181 | |
| 182 | func TestLargeStringWrites(t *testing.T) { |
| 183 | var buf Buffer |
| 184 | limit := 30 |
| 185 | if testing.Short() { |
| 186 | limit = 9 |
| 187 | } |
| 188 | for i := 3; i < limit; i += 3 { |
| 189 | s := fillString(t, "TestLargeWrites (1)", &buf, "", 5, testString) |
| 190 | empty(t, "TestLargeStringWrites (2)", &buf, s, make([]byte, len(testString)/i)) |
| 191 | } |
| 192 | check(t, "TestLargeStringWrites (3)", &buf, "") |
| 193 | } |
| 194 | |
| 195 | func TestLargeByteWrites(t *testing.T) { |
| 196 | var buf Buffer |
nothing calls this directly
no test coverage detected