| 31 | // ============================================================================= |
| 32 | |
| 33 | TEST(StaticDataValue, GetDataType_ReturnsStaticData) { |
| 34 | StaticDataValue v("\"hello\""); |
| 35 | EXPECT_EQ(v.getDataType(), DataType::StaticData); |
| 36 | } |
| 37 | |
| 38 | TEST(StaticDataValue, GetDataBindingStatus_ReturnsNotDependent) { |
| 39 | StaticDataValue v("\"hello\""); |
nothing calls this directly
no test coverage detected