类的使用
org.springframework.test.web.client.ExpectedCount
使用ExpectedCount的程序包 程序包 说明 org.springframework.test.web.client Contains client-side REST testing support.org.springframework.test.web.client中ExpectedCount的使用
返回ExpectedCount的org.springframework.test.web.client中的方法 修饰符和类型 方法 说明 static ExpectedCountExpectedCount. between(int min, int max)Betweenminandmaxnumber of times.ExpectedCountDefaultRequestExpectation.RequestCount. getExpectedCount()static ExpectedCountExpectedCount. manyTimes()Many times (range of 1..Integer.MAX_VALUE).static ExpectedCountExpectedCount. max(int max)At mostmaxnumber of times.static ExpectedCountExpectedCount. min(int min)At leastminnumber of times.static ExpectedCountExpectedCount. never()No calls expected at all, i.e. min=0 and max=0.static ExpectedCountExpectedCount. once()Exactly once.static ExpectedCountExpectedCount. times(int count)Exactly N times.static ExpectedCountExpectedCount. twice()Exactly twice.参数类型为ExpectedCount的org.springframework.test.web.client中的方法 修饰符和类型 方法 说明 ResponseActionsMockRestServiceServer. expect(ExpectedCount count, RequestMatcher matcher)An alternative toMockRestServiceServer.expect(RequestMatcher)that also indicates how many times the request is expected to be executed.ResponseActionsAbstractRequestExpectationManager. expectRequest(ExpectedCount count, RequestMatcher matcher)ResponseActionsRequestExpectationManager. expectRequest(ExpectedCount count, RequestMatcher requestMatcher)Set up a new request expectation.参数类型为ExpectedCount的org.springframework.test.web.client中的构造器 构造器 说明 DefaultRequestExpectation(ExpectedCount expectedCount, RequestMatcher requestMatcher)Create a new request expectation that should be called a number of times as indicated byRequestCount.RequestCount(ExpectedCount expectedCount)