* Test that a repeating expectation that is not partially satisfied fails
* properly when given an event it cannot consume.
*/
public void testPartialDissatisfaction() {
Expectation nested = new TestSimpleExpectation("A");
RepeatingExpectation repeating
= new RepeatingExpectation(2, 3, nested);
// Process and event to move it towards a partially satisfied state.
repeating.checkExpectations(ExpectationState.CURRENT, new TestEvent("A"), report);