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