|
|
|
@ -86,7 +86,7 @@ public class RootUriRequestExpectationManagerTests { |
|
|
|
|
|
|
|
|
|
|
|
@Test |
|
|
|
@Test |
|
|
|
public void expectRequestShouldDelegateToExpectationManager() { |
|
|
|
public void expectRequestShouldDelegateToExpectationManager() { |
|
|
|
ExpectedCount count = mock(ExpectedCount.class); |
|
|
|
ExpectedCount count = ExpectedCount.once(); |
|
|
|
RequestMatcher requestMatcher = mock(RequestMatcher.class); |
|
|
|
RequestMatcher requestMatcher = mock(RequestMatcher.class); |
|
|
|
this.manager.expectRequest(count, requestMatcher); |
|
|
|
this.manager.expectRequest(count, requestMatcher); |
|
|
|
verify(this.delegate).expectRequest(count, requestMatcher); |
|
|
|
verify(this.delegate).expectRequest(count, requestMatcher); |
|
|
|
|