| 20 | using namespace OpenDDS::DCPS; |
| 21 | |
| 22 | TEST(dds_DCPS_WaitSet, DefaultConstructor) |
| 23 | { |
| 24 | DDS::WaitSet ws; |
| 25 | DDS::ConditionSeq conditions; |
| 26 | EXPECT_EQ(ws.get_conditions(conditions), DDS::RETCODE_OK); |
| 27 | EXPECT_EQ(conditions.length(), 0u); |
| 28 | } |
| 29 | |
| 30 | TEST(dds_DCPS_WaitSet, VarDuplicate) |
| 31 | { |
nothing calls this directly
no test coverage detected