| 39 | using namespace openstudio::model; |
| 40 | |
| 41 | TEST_F(ModelFixture, ZoneVentilationDesignFlowRate) { |
| 42 | ::testing::FLAGS_gtest_death_test_style = "threadsafe"; |
| 43 | |
| 44 | ASSERT_EXIT( |
| 45 | { |
| 46 | Model m; |
| 47 | ZoneVentilationDesignFlowRate zv(m); |
| 48 | |
| 49 | exit(0); |
| 50 | }, |
| 51 | ::testing::ExitedWithCode(0), ""); |
| 52 | } |
| 53 | |
| 54 | TEST_F(ModelFixture, ZoneVentilationDesignFlowRate_GettersSetters) { |
| 55 | Model m; |
nothing calls this directly
no test coverage detected