| 50 | class TestPartitioning : public ::testing::Test { |
| 51 | public: |
| 52 | void AssertParseError(const std::string& path) { |
| 53 | ASSERT_RAISES(Invalid, partitioning_->Parse(path)); |
| 54 | } |
| 55 | |
| 56 | void AssertParse(const std::string& path, compute::Expression expected) { |
| 57 | ASSERT_OK_AND_ASSIGN(auto parsed, partitioning_->Parse(path)); |