| 67 | using namespace openstudio::model; |
| 68 | |
| 69 | TEST_F(ModelFixture, FanSystemModel_DefaultConstructors) { |
| 70 | ::testing::FLAGS_gtest_death_test_style = "threadsafe"; |
| 71 | |
| 72 | ASSERT_EXIT( |
| 73 | { |
| 74 | Model m; |
| 75 | FanSystemModel testObject = FanSystemModel(m); |
| 76 | |
| 77 | exit(0); |
| 78 | }, |
| 79 | ::testing::ExitedWithCode(0), ""); |
| 80 | } |
| 81 | |
| 82 | TEST_F(ModelFixture, FanSystemModel_GettersSetters) { |
| 83 | Model m; |
nothing calls this directly
no test coverage detected