| 357 | } |
| 358 | |
| 359 | void TestStreamReadTo3(IInputStream& input, const char* comment) { |
| 360 | UNIT_ASSERT_VALUES_EQUAL_C(input.ReadLine(), "111a222b333c444d555e666f", comment); |
| 361 | } |
| 362 | |
| 363 | void TestStreamReadTo4(IInputStream& input, const char* comment) { |
| 364 | UNIT_ASSERT_VALUES_EQUAL_C(input.ReadTo('\0'), "one", comment); |