| 203 | // `inputs` are ordered; `inputs`[i] must match input i. |
| 204 | template <typename... Ts> |
| 205 | impl::NodeMatcherProperties Inputs(Ts... inputs) { |
| 206 | return impl::Inputs({inputs...}); |
| 207 | } |
| 208 | |
| 209 | // Matches the `idx`'th output of a node that matches `node`. |
| 210 | ::testing::Matcher<impl::OutEdge> Out(int oidx, |