| 1368 | } |
| 1369 | |
| 1370 | void AssertTakeTCT(const std::shared_ptr<Schema>& schm, |
| 1371 | const std::vector<std::string>& table_json, |
| 1372 | const std::vector<std::string>& filter, |
| 1373 | const std::vector<std::string>& expected_table) { |
| 1374 | ASSERT_OK_AND_ASSIGN(auto actual, TakeTCT(schm, table_json, filter)); |
| 1375 | ValidateOutput(actual); |
| 1376 | ASSERT_TABLES_EQUAL(*TableFromJSON(schm, expected_table), *actual.table()); |
| 1377 | } |
| 1378 | |
| 1379 | // Validators used by random data tests |
| 1380 |
no test coverage detected