| 242 | }; |
| 243 | |
| 244 | TEST_F(TestSchemaMetadata, PrimitiveFields) { |
| 245 | CheckSchemaRoundtrip(Schema({ |
| 246 | field("f0", int8()), |
| 247 | field("f1", int16(), false), |
| 248 | field("f2", int32()), |
| 249 | field("f3", int64()), |
| 250 | field("f4", uint8()), |
| 251 | field("f5", uint16()), |
| 252 | field("f6", uint32()), |
| 253 | field("f7", uint64()), |
| 254 | field("f8", float32()), |
| 255 | field("f9", float64(), false), |
| 256 | field("f10", boolean()), |
| 257 | })); |
| 258 | } |
| 259 | |
| 260 | TEST_F(TestSchemaMetadata, BinaryFields) { |
| 261 | CheckSchemaRoundtrip(Schema({ |
nothing calls this directly
no test coverage detected