| 16 | using namespace openstudio::model; |
| 17 | |
| 18 | TEST_F(ModelFixture, ModelObjectList_DefaultConstructor) { |
| 19 | ::testing::FLAGS_gtest_death_test_style = "threadsafe"; |
| 20 | |
| 21 | ASSERT_EXIT( |
| 22 | { |
| 23 | Model model; |
| 24 | ModelObjectList testObject = ModelObjectList(model); |
| 25 | |
| 26 | exit(0); |
| 27 | }, |
| 28 | ::testing::ExitedWithCode(0), ""); |
| 29 | } |
| 30 | |
| 31 | TEST_F(ModelFixture, ModelObjectList_Remove) { |
| 32 | Model model; |
nothing calls this directly
no test coverage detected