use of org.springframework.test.web.client.ExpectedCount in project spring-boot by spring-projects.
the class RootUriRequestExpectationManagerTests method expectRequestShouldDelegateToExpectationManager.
@Test
public void expectRequestShouldDelegateToExpectationManager() throws Exception {
ExpectedCount count = mock(ExpectedCount.class);
RequestMatcher requestMatcher = mock(RequestMatcher.class);
this.manager.expectRequest(count, requestMatcher);
verify(this.delegate).expectRequest(count, requestMatcher);
}
Aggregations