| 12 | using namespace openstudio::model; |
| 13 | |
| 14 | TEST_F(ModelFixture, MeterCustom_DefaultConstructor) { |
| 15 | ::testing::FLAGS_gtest_death_test_style = "threadsafe"; |
| 16 | |
| 17 | ASSERT_EXIT( |
| 18 | { |
| 19 | Model model; |
| 20 | MeterCustom testObject(model); |
| 21 | |
| 22 | exit(0); |
| 23 | }, |
| 24 | ::testing::ExitedWithCode(0), ""); |
| 25 | } |
| 26 | |
| 27 | TEST_F(ModelFixture, MeterCustom_Remove) { |
| 28 | Model model; |
nothing calls this directly
no test coverage detected