| 405 | } |
| 406 | |
| 407 | void TStreamsTest::TestStrokaInput() { |
| 408 | TString s; |
| 409 | for (ui32 i = 0; i < 100000; ++i) { |
| 410 | TVector<char> d(i % 1000, 'a'); |
| 411 | s.append(d.data(), d.size()); |
| 412 | s.append('\n'); |
| 413 | } |
| 414 | TestStreamReadTo(s, ::TestStrokaInput); |
| 415 | } |
| 416 | |
| 417 | void TStreamsTest::TestWtrokaInput() { |
| 418 | const TString s(Text); |
nothing calls this directly
no test coverage detected