| 1756 | } |
| 1757 | |
| 1758 | inline void AssertFragmentsAreFromPath(FragmentIterator it, |
| 1759 | std::vector<std::string> expected) { |
| 1760 | // Ordering is not guaranteed. |
| 1761 | EXPECT_THAT(PathsOf(IteratorToVector(std::move(it))), |
| 1762 | testing::UnorderedElementsAreArray(expected)); |
| 1763 | } |
| 1764 | |
| 1765 | static std::vector<compute::Expression> PartitionExpressionsOf( |
| 1766 | const FragmentVector& fragments) { |
no test coverage detected