| 43 | } // namespace |
| 44 | |
| 45 | TEST(RawDataDecodeTest, TypeSizeUnsignedByte) { |
| 46 | EXPECT_EQ(type_size(BufferType::UnsignedByte), sizeof(std::uint8_t)); |
| 47 | } |
| 48 | |
| 49 | TEST(RawDataDecodeTest, TypeSizeUnsignedShort) { |
| 50 | EXPECT_EQ(type_size(BufferType::UnsignedShort), sizeof(std::int16_t)); |
nothing calls this directly
no test coverage detected