| 13 | |
| 14 | template <class T, class R = T, class U> |
| 15 | void Check(const U& value) |
| 16 | { |
| 17 | auto str = ConvertToYsonString(static_cast<T>(value)); |
| 18 | auto anotherValue = ConvertFromYsonString<R>(str); |
| 19 | EXPECT_EQ(static_cast<T>(value), anotherValue); |
| 20 | } |
| 21 | |
| 22 | TEST(TConvertTest, Basic) |
| 23 | { |
nothing calls this directly
no test coverage detected