public Invokable createVoidExpectation(String methodName, InvocationMatcher arguments) {
return callOnce(new InvocationMocker(methodName, arguments, new VoidStub()));
}
private Invokable callOnce(InvocationMocker mocker) {
return mocker.addMatcher(new CallOnceMatcher());
}