// Worked
}
}
public void testAssessInitialState() {
set.checkExpectations(ExpectationState.CURRENT, new TestEvent("B"), report);
set.checkExpectations(ExpectationState.CURRENT, new TestEvent("A"), report);
set.checkExpectations(ExpectationState.CURRENT, new TestEvent("C"), report);
EventEffect effect
= set.checkExpectations(ExpectationState.INITIAL,
new TestEvent("A"), report);
assertSame("Unexpected event effect assessment",
EventEffect.MATCHED_EXPECTATION, effect);
}