| 232 | // The main gmock matcher. See file comment for example usage. |
| 233 | template <typename... Ts> |
| 234 | ::testing::Matcher<const Node*> NodeWith(Ts... args) { |
| 235 | std::array<impl::NodeMatcherProperties, sizeof...(Ts)> array = {args...}; |
| 236 | return impl::NodeWith(array); |
| 237 | } |
| 238 | |
| 239 | ::testing::Matcher<impl::OutEdge> Const( |
| 240 | const ::tensorflow::Input::Initializer& val); |