| 396 | } // namespace |
| 397 | |
| 398 | void TStreamsTest::TestReadTo() { |
| 399 | TestStreamReadTo("111a222b333c444d555e666f", TestStreamReadTo1); |
| 400 | TestStreamReadTo(Text, TestStreamReadTo2); |
| 401 | TestStreamReadTo("111a222b333c444d555e666f", TestStreamReadTo3); |
| 402 | TString withZero = "one"; |
| 403 | withZero.append('\0').append("two").append('\0').append("three"); |
| 404 | TestStreamReadTo(withZero, TestStreamReadTo4); |
| 405 | } |
| 406 | |
| 407 | void TStreamsTest::TestStrokaInput() { |
| 408 | TString s; |
nothing calls this directly
no test coverage detected