| 143 | |
| 144 | template <typename T> |
| 145 | void CompareVectors(const std::vector<T>& result, const std::vector<T>& expected) |
| 146 | { |
| 147 | CHECK(std::equal(result.begin(), result.end(), expected.begin(), expected.end())); |
| 148 | } |
| 149 | |
| 150 | void CompareSubgraphViews(SubgraphView::SubgraphViewPtr& result, |
| 151 | SubgraphView::SubgraphViewPtr& expected) |
no test coverage detected