| 77 | } |
| 78 | |
| 79 | void checkFixed32Conformance(ByteBuffer& buffer) { |
| 80 | checkValue<WireFormat::TYPE_FIXED32>(buffer, field.getFixed32()); |
| 81 | checkValue<WireFormat::TYPE_SFIXED32>(buffer, field.getSFixed32()); |
| 82 | checkValue<WireFormat::TYPE_FLOAT>(buffer, field.getFloat()); |
| 83 | } |
| 84 | |
| 85 | template<typename F> |
| 86 | void testEncode(F&& doEncode) { |
nothing calls this directly
no test coverage detected