MCPcopy Create free account
hub / github.com/NatLabRockies/OpenStudio / TEST_F

Function TEST_F

src/model/test/FanSystemModel_GTest.cpp:69–80  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

67using namespace openstudio::model;
68
69TEST_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
82TEST_F(ModelFixture, FanSystemModel_GettersSetters) {
83 Model m;

Callers

nothing calls this directly

Tested by

no test coverage detected