| 29 | namespace arrow { |
| 30 | |
| 31 | TEST(KeyValueMetadataTest, SimpleConstruction) { |
| 32 | KeyValueMetadata metadata; |
| 33 | ASSERT_EQ(0, metadata.size()); |
| 34 | } |
| 35 | |
| 36 | TEST(KeyValueMetadataTest, StringVectorConstruction) { |
| 37 | std::vector<std::string> keys = {"foo", "bar"}; |
nothing calls this directly
no test coverage detected