| 1139 | } |
| 1140 | |
| 1141 | Y_UNIT_TEST(EmptyStringSerializationTest) { |
| 1142 | TCowString nothing{}; |
| 1143 | TCowString deserialized = SerializeThereAndBack(nothing); |
| 1144 | |
| 1145 | UNIT_ASSERT_VALUES_EQUAL(nothing, deserialized); |
| 1146 | } |
| 1147 | |
| 1148 | Y_UNIT_TEST(RegularStringSerializationTest) { |
| 1149 | TCowString abra = "cadabra"; |
nothing calls this directly
no test coverage detected