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