| 641 | typename Path, |
| 642 | typename Deserializer> |
| 643 | void ExpectNoFutureUnionHttpRequests( |
| 644 | Message message, |
| 645 | UnionType unionType, |
| 646 | Path path, |
| 647 | Deserializer deserializer, |
| 648 | bool drop = false) |
| 649 | { |
| 650 | TestsFilter* filter = FilterTestEventListener::instance()->install(); |
| 651 | Future<http::Request> future; |
| 652 | synchronized (filter->mutex) { |
| 653 | EXPECT_CALL(filter->mock, filter( |
| 654 | testing::A<const UPID&>(), |
| 655 | testing::A<const HttpEvent&>())) |
| 656 | .With(UnionHttpMatcher(message, unionType, path, deserializer)) |
| 657 | .Times(0); |
| 658 | } |
| 659 | } |
| 660 | |
| 661 | |
| 662 | template <typename Name, typename From, typename To> |
nothing calls this directly
no test coverage detected