| 724 | // ============================================================================ |
| 725 | |
| 726 | TEST(StructComprehensiveTest, SingleFieldStruct) { |
| 727 | test_roundtrip(SingleFieldStruct{0}); |
| 728 | test_roundtrip(SingleFieldStruct{42}); |
| 729 | test_roundtrip(SingleFieldStruct{-100}); |
| 730 | test_roundtrip(SingleFieldStruct{INT32_MAX}); |
| 731 | test_roundtrip(SingleFieldStruct{INT32_MIN}); |
| 732 | } |
| 733 | |
| 734 | TEST(StructComprehensiveTest, TwoFieldStruct) { |
| 735 | test_roundtrip(TwoFieldStruct{0, 0}); |
nothing calls this directly
no test coverage detected