assertThat(expectation.isSatisfied(), is(false));
}
@Test
public void expectationExpectedAnyNumberOfTimesHasCorrectStatusString() {
ClientDriverExpectation expectation = new ClientDriverExpectation(PAIR);
expectation.anyTimes();
assertThat(expectation.getStatusString(), is("expected: any, actual: 0"));
}