| 21 | using namespace openstudio::model; |
| 22 | |
| 23 | TEST_F(ModelFixture, PumpConstantSpeed_PumpConstantSpeed) { |
| 24 | ::testing::FLAGS_gtest_death_test_style = "threadsafe"; |
| 25 | |
| 26 | ASSERT_EXIT( |
| 27 | { |
| 28 | Model m; |
| 29 | PumpConstantSpeed pump(m); |
| 30 | |
| 31 | exit(0); |
| 32 | }, |
| 33 | ::testing::ExitedWithCode(0), ""); |
| 34 | } |
| 35 | |
| 36 | TEST_F(ModelFixture, PumpConstantSpeed_GettersSetters) { |
| 37 |
nothing calls this directly
no test coverage detected