| 19 | using namespace openstudio::model; |
| 20 | |
| 21 | TEST_F(ModelFixture, RefrigerationWalkIn_DefaultConstructor) { |
| 22 | ::testing::FLAGS_gtest_death_test_style = "threadsafe"; |
| 23 | |
| 24 | ASSERT_EXIT( |
| 25 | { |
| 26 | Model model; |
| 27 | ScheduleCompact wds(model); |
| 28 | RefrigerationWalkIn testObject = RefrigerationWalkIn(model, wds); |
| 29 | |
| 30 | exit(0); |
| 31 | }, |
| 32 | ::testing::ExitedWithCode(0), ""); |
| 33 | } |
| 34 | |
| 35 | TEST_F(ModelFixture, RefrigerationWalkIn_Remove) { |
| 36 | Model model; |
nothing calls this directly
no test coverage detected