| 83 | INSTANTIATE_TEST_SUITE_P(ReaderTest, ReaderTest, ::testing::Values(false, true)); |
| 84 | |
| 85 | TEST_P(ReaderTest, Empty) { |
| 86 | SetUpReader("{}\n{}\n"); |
| 87 | ASSERT_OK_AND_ASSIGN(table_, reader_->Read()); |
| 88 | |
| 89 | auto expected_table = Table::Make(schema({}), ArrayVector(), 2); |
| 90 | AssertTablesEqual(*expected_table, *table_); |
| 91 | } |
| 92 | |
| 93 | TEST_P(ReaderTest, EmptyNoNewlineAtEnd) { |
| 94 | SetUpReader("{}\n{}"); |
nothing calls this directly
no test coverage detected