| 140 | } |
| 141 | |
| 142 | void TStreamsTest::TestReadLine() { |
| 143 | TString data("1234\r\n5678\nqw"); |
| 144 | TStringInput si(data); |
| 145 | |
| 146 | UNIT_ASSERT_EQUAL(si.ReadLine(), "1234"); |
| 147 | UNIT_ASSERT_EQUAL(si.ReadLine(), "5678"); |
| 148 | UNIT_ASSERT_EQUAL(si.ReadLine(), "qw"); |
| 149 | } |
| 150 | |
| 151 | void TStreamsTest::TestMemoryStream() { |
| 152 | char buf[1024]; |