| 82 | static const MapBitmaskHelper bitmask_helper(bitmask_pairs, 64, OpenDDS::XTypes::TK_UINT64); |
| 83 | |
| 84 | TEST(dds_DCPS_JsonValueReader, struct_empty) |
| 85 | { |
| 86 | const char json[] = "{}"; |
| 87 | StringStream ss(json); |
| 88 | JsonValueReader<> jvr(ss); |
| 89 | EXPECT_TRUE(jvr.begin_struct()); |
| 90 | EXPECT_TRUE(jvr.end_struct()); |
| 91 | } |
| 92 | |
| 93 | TEST(dds_DCPS_JsonValueReader, array_empty) |
| 94 | { |
nothing calls this directly
no test coverage detected