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

Function TEST_F

src/model/test/AirflowNetworkDistributionNode_GTest.cpp:18–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16using namespace openstudio::model;
17
18TEST_F(ModelFixture, AirflowNetwork_DistributionNode) {
19 Model model;
20
21 Node node(model);
22
23 AirflowNetworkDistributionNode afnnode(model);
24
25 AirflowNetworkDistributionNode afnnode2 = node.getAirflowNetworkDistributionNode();
26
27 ASSERT_TRUE(afnnode2.node());
28 EXPECT_EQ(node, afnnode2.node().get());
29
30 /*
31 AirLoopHVAC airloop(model);
32 Test other loop-related nodes here...
33 */
34}

Callers

nothing calls this directly

Calls 3

nodeMethod · 0.80
getMethod · 0.45

Tested by

no test coverage detected