| 17 | }; |
| 18 | |
| 19 | TEST_F(SerializeTraitsTest, default_not_serializable) { |
| 20 | struct S {}; |
| 21 | ASSERT_FALSE(SerializeTraits<S>::SERIALIZABLE); |
| 22 | S s; |
| 23 | ASSERT_FALSE(Serialization::serialize_to_string(s, string)); |
| 24 | ASSERT_FALSE(Serialization::parse_from_string(string, s)); |
| 25 | } |
| 26 | |
| 27 | struct MinimalSerializable { |
| 28 | MinimalSerializable() = default; |
nothing calls this directly
no test coverage detected