| 9 | |
| 10 | Y_UNIT_TEST_SUITE(TStringInputOutputTest) { |
| 11 | Y_UNIT_TEST(Lvalue) { |
| 12 | TString str = "Hello, World!"; |
| 13 | TStringInput input(str); |
| 14 | |
| 15 | TString result = input.ReadAll(); |
| 16 | |
| 17 | UNIT_ASSERT_VALUES_EQUAL(result, str); |
| 18 | } |
| 19 | |
| 20 | Y_UNIT_TEST(ConstRef) { |
| 21 | TString str = "Hello, World!"; |
nothing calls this directly
no test coverage detected