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

Function TEST_F

src/model/test/Screen_GTest.cpp:16–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14using namespace openstudio::model;
15
16TEST_F(ModelFixture, Screen_DefaultConstructor) {
17 ::testing::FLAGS_gtest_death_test_style = "threadsafe";
18
19 ASSERT_EXIT(
20 {
21 Model m;
22 Screen screen(m);
23
24 exit(0);
25 },
26 ::testing::ExitedWithCode(0), "");
27}
28
29TEST_F(ModelFixture, Screen_GettersSetters) {
30 Model m;

Callers

nothing calls this directly

Tested by

no test coverage detected