| 6 | |
| 7 | Y_UNIT_TEST_SUITE(TestLengthIO) { |
| 8 | Y_UNIT_TEST(TestLengthLimitedInput) { |
| 9 | char buf[16]; |
| 10 | |
| 11 | TStringStream s1("abcd"); |
| 12 | TLengthLimitedInput l1(&s1, 2); |
| 13 | UNIT_ASSERT_VALUES_EQUAL(l1.Load(buf, 3), 2); |
| 14 | UNIT_ASSERT_VALUES_EQUAL(l1.Read(buf, 1), 0); |
| 15 | } |
| 16 | |
| 17 | Y_UNIT_TEST(TestCountingInput) { |
| 18 | char buf[16]; |