Suppose that I have three types: TopHandler, HandlerA, and HandlerB.
Each of them has a void handle(Something) method.
An instance of TopHandler holds references to instances of HandlerA and HandlerB, and it invokes handle() on HandlerA and HandlerB.
In my test I want to mock all three objects, and then verify that the invocation on topHandler would cause the invocation on the other two.
How do I specify that? I know that EasyMock lets me specify the expected behavior of the mocks, but I wasn't clear what features to use here.