Uses of Class
org.grpcmock.definitions.verification.CountMatcher
Packages that use CountMatcher
-
Uses of CountMatcher in org.grpcmock
Methods in org.grpcmock that return CountMatcherModifier and TypeMethodDescriptionstatic CountMatcherGrpcMock.atLeast(int count) Called the specified number of times or more.static CountMatcherGrpcMock.atMost(int count) Called the specified number of times or less.static CountMatcherGrpcMock.never()Never called.static CountMatcherGrpcMock.times(int count) Called exactly the specified number of times.Methods in org.grpcmock with parameters of type CountMatcherModifier and TypeMethodDescriptionstatic <ReqT> voidGrpcMock.verifyThat(io.grpc.MethodDescriptor<ReqT, ?> method, CountMatcher countMatcher) Verify that given method was called number of times satisfying providedCountMatcher.<ReqT> voidGrpcMock.verifyThat(RequestPattern<ReqT> requestPattern, CountMatcher countMatcher) Verify that givenRequestPatternis called a number of times satisfying the providedCountMatcher.static <ReqT> voidGrpcMock.verifyThat(RequestPatternBuilderStep<ReqT> requestPattern, CountMatcher countMatcher) Verify that givenRequestPatternwas called number of times satisfying providedCountMatcher. -
Uses of CountMatcher in org.grpcmock.definitions.verification
Methods in org.grpcmock.definitions.verification that return CountMatcherModifier and TypeMethodDescriptionstatic CountMatcherCountMatcher.atLeast(int count) Called the specified number of times or more.static CountMatcherCountMatcher.atMost(int count) Called the specified number of times or less.static CountMatcherCountMatcher.never()Never called.static CountMatcherCountMatcher.once()Called exactly one time.static CountMatcherCountMatcher.times(int count) Called exactly the specified number of times.static CountMatcherCountMatcher.twice()Called exactly two times.