| 10 | //////////////////////////////////////////////////////////////////////////////// |
| 11 | |
| 12 | TEST(TYsonStringTest, SaveLoadNull) |
| 13 | { |
| 14 | const TYsonString expected; |
| 15 | TStringStream s; |
| 16 | ::Save(&s, expected); |
| 17 | TYsonString result; |
| 18 | ::Load(&s, result); |
| 19 | EXPECT_EQ(expected, result); |
| 20 | } |
| 21 | |
| 22 | TEST(TYsonStringTest, SaveLoadString) |
| 23 | { |
nothing calls this directly
no test coverage detected