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

Function TEST_F

src/model/test/RefrigerationWalkIn_GTest.cpp:21–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

19using namespace openstudio::model;
20
21TEST_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
35TEST_F(ModelFixture, RefrigerationWalkIn_Remove) {
36 Model model;

Callers

nothing calls this directly

Tested by

no test coverage detected