| 1360 | } |
| 1361 | |
| 1362 | void AssertTakeTAT(const std::shared_ptr<Schema>& schm, |
| 1363 | const std::vector<std::string>& table_json, const std::string& filter, |
| 1364 | const std::vector<std::string>& expected_table) { |
| 1365 | ASSERT_OK_AND_ASSIGN(auto actual, TakeTAT(schm, table_json, filter)); |
| 1366 | ValidateOutput(actual); |
| 1367 | ASSERT_TABLES_EQUAL(*TableFromJSON(schm, expected_table), *actual.table()); |
| 1368 | } |
| 1369 | |
| 1370 | void AssertTakeTCT(const std::shared_ptr<Schema>& schm, |
| 1371 | const std::vector<std::string>& table_json, |
no test coverage detected