| 100 | }; |
| 101 | |
| 102 | TEST_F(MessageExchangeTest, PrimitiveBlockSize) { |
| 103 | PrimitiveBlock block(TEST_VALUE_42); |
| 104 | EXPECT_EQ(block.size(), sizeof(int)); |
| 105 | } |
| 106 | |
| 107 | TEST_F(MessageExchangeTest, PrimitiveBlockData) { |
| 108 | PrimitiveBlock block(TEST_VALUE_42); |
nothing calls this directly
no test coverage detected