(t *testing.T)
| 92 | } |
| 93 | |
| 94 | func TestNewBufferString(t *testing.T) { |
| 95 | buf := NewBufferString(testString) |
| 96 | check(t, "NewBufferString", buf, testString) |
| 97 | } |
| 98 | |
| 99 | // Empty buf through repeated reads into fub. |
| 100 | // The initial contents of buf corresponds to the string s. |
nothing calls this directly
no test coverage detected