| 93 | // ============================================================================ |
| 94 | |
| 95 | TEST(UnsignedSerializerTest, Uint8NativeRoundtrip) { |
| 96 | test_roundtrip_native<uint8_t>(0); |
| 97 | test_roundtrip_native<uint8_t>(127); |
| 98 | test_roundtrip_native<uint8_t>(255); |
| 99 | test_roundtrip_native<uint8_t>(42); |
| 100 | } |
| 101 | |
| 102 | TEST(UnsignedSerializerTest, Uint16NativeRoundtrip) { |
| 103 | test_roundtrip_native<uint16_t>(0); |
nothing calls this directly
no test coverage detected