| 9 | // ============================================================================ |
| 10 | |
| 11 | TEST(SerializableData, DefaultConstructed_IsNull) { |
| 12 | SerializableData data; |
| 13 | EXPECT_TRUE(data.isNull()); |
| 14 | EXPECT_FALSE(data.isValid()); |
| 15 | } |
| 16 | |
| 17 | TEST(SerializableData, DefaultConstructed_AccessorsReturnDefaults) { |
| 18 | SerializableData data; |
nothing calls this directly
no test coverage detected