Uses of Class
org.springframework.test.web.client.ExpectedCount
-
Uses of ExpectedCount in org.springframework.test.web.client
Modifier and TypeMethodDescriptionstatic ExpectedCount
ExpectedCount.between
(int min, int max) Betweenmin
andmax
number of times.DefaultRequestExpectation.RequestCount.getExpectedCount()
static ExpectedCount
ExpectedCount.manyTimes()
Many times (range of 1..Integer.MAX_VALUE).static ExpectedCount
ExpectedCount.max
(int max) At mostmax
number of times.static ExpectedCount
ExpectedCount.min
(int min) At leastmin
number of times.static ExpectedCount
ExpectedCount.never()
No calls expected at all, i.e.static ExpectedCount
ExpectedCount.once()
Exactly once.static ExpectedCount
ExpectedCount.times
(int count) Exactly N times.static ExpectedCount
ExpectedCount.twice()
Exactly twice.Modifier and TypeMethodDescriptionMockRestServiceServer.expect
(ExpectedCount count, RequestMatcher matcher) An alternative toMockRestServiceServer.expect(RequestMatcher)
that also indicates how many times the request is expected to be executed.AbstractRequestExpectationManager.expectRequest
(ExpectedCount count, RequestMatcher matcher) RequestExpectationManager.expectRequest
(ExpectedCount count, RequestMatcher requestMatcher) Set up a new request expectation.ModifierConstructorDescriptionDefaultRequestExpectation
(ExpectedCount expectedCount, RequestMatcher requestMatcher) Create a new request expectation that should be called a number of times as indicated byRequestCount
.RequestCount
(ExpectedCount expectedCount)