| 686 | |
| 687 | template <typename PID, typename Method> |
| 688 | void DropDispatches(PID pid, Method method) |
| 689 | { |
| 690 | TestsFilter* filter = FilterTestEventListener::instance()->install(); |
| 691 | synchronized (filter->mutex) { |
| 692 | EXPECT_CALL(filter->mock, filter(pid, testing::A<const DispatchEvent&>())) |
| 693 | .With(DispatchMatcher(method)) |
| 694 | .WillRepeatedly(testing::Return(true)); |
| 695 | } |
| 696 | } |
| 697 | |
| 698 | |
| 699 | template <typename PID, typename Method> |
nothing calls this directly
no test coverage detected