Home
last modified time | relevance | path

Searched refs:atLeast (Results 1 – 25 of 137) sorted by relevance

123456

/external/mockito/src/test/java/org/mockitousage/verification/
DAtLeastXVerificationTest.java30 verify(mock, atLeast(2)).clear(); in shouldVerifyAtLeastXTimes()
36 verify(mock, atLeast(1)).add(anyString()); in shouldFailVerifiationAtLeastXTimes()
39 verify(mock, atLeast(2)).add(anyString()); in shouldFailVerifiationAtLeastXTimes()
51 verify(mock, atLeast(0)).add("one"); in shouldAllowAtLeastZeroForTheSakeOfVerifyNoMoreInteractionsSometimes()
52 verify(mock, atLeast(0)).clear(); in shouldAllowAtLeastZeroForTheSakeOfVerifyNoMoreInteractionsSometimes()
DVerificationAfterDelayTest.java86 verify(mock, after(100).atLeast(1)).oneArg('1'); in shouldVerifyNormallyWithAtLeast()
109 verify(mock, after(100).atLeast(2)).oneArg('1'); in shouldWaitTheFullTimeIfTheTestCouldPass()
171 verify(mock, after(200).atLeast(n)).oneArg((char) captor.capture()); in shouldReturnListOfArgumentsWithSameSizeAsGivenInAtLeastVerification()
DVerificationWithTimeoutTest.java89 verify(mock, timeout(100).atLeast(1)).oneArg('c'); in shouldAllowMixingOtherModesWithTimeout()
101 verify(mock, timeout(100).atLeast(1)).oneArg('c'); in shouldAllowMixingOtherModesWithTimeoutAndFail()
DVerificationInOrderWithCallsTest.java400 verifier.verify( mockOne, atLeast(1)).oneArg( 1 ); in shouldVerifyWithCallsAfterUseOfAtLeast()
436 verifier.verify( mockOne, atLeast(1)).oneArg( 2 ); in shouldVerifyWithAtLeastAfterUseOfCalls()
437 verifier.verify( mockOne, atLeast(1)).oneArg( 1 ); in shouldVerifyWithAtLeastAfterUseOfCalls()
/external/guava/guava-tests/test/com/google/common/collect/
DRangeTest.java215 Range<Integer> range = Range.atLeast(6); in testAtLeast()
284 Cut<Integer> b = Range.atLeast(0).lowerBound; in testOrderingCuts()
286 Cut<Integer> d = Range.atLeast(1).lowerBound; in testOrderingCuts()
322 assertFalse(range.encloses(Range.atLeast(3))); in testEncloses_open()
339 assertFalse(range.encloses(Range.atLeast(3))); in testEncloses_closed()
367 range.intersection(Range.atLeast(4))); in testIntersection_deFactoEmpty()
391 assertEquals(range, range.intersection(Range.atLeast(3))); in testIntersection_singleton()
392 assertEquals(range, range.intersection(Range.atLeast(2))); in testIntersection_singleton()
400 range.intersection(Range.atLeast(4)); in testIntersection_singleton()
493 assertEquals(Range.atLeast(4), range.span(Range.atLeast(4))); in testSpan_general()
[all …]
DImmutableRangeSetTest.java49 Range.atLeast(3),
180 expectedComplement.add(Range.atLeast(5)); in testSingleBoundedRange()
274 .add(Range.atLeast(5)) in testMultipleBoundedAboveRanges()
344 Range.atLeast(3), in testExhaustive()
DTreeRangeSetTest.java294 .has().exactly(Range.lessThan(1), Range.atLeast(6)).inOrder(); in testMergesConnectedWithOverlap()
304 .has().exactly(Range.lessThan(1), Range.atLeast(6)).inOrder(); in testMergesConnectedDisjoint()
393 .has().exactly(Range.lessThan(1), Range.atLeast(6)).inOrder(); in testFillHoleExactly()
404 .has().exactly(Range.lessThan(1), Range.atLeast(6)).inOrder(); in testFillHoleWithOverlap()
/external/mockito/src/main/java/org/mockito/internal/verification/
DVerificationModeFactory.java13 return atLeast(1); in atLeastOnce()
16 public static VerificationMode atLeast(int minNumberOfInvocations) { in atLeast() method in VerificationModeFactory
DVerificationWrapper.java36 public VerificationMode atLeast(int minNumberOfInvocations) { in atLeast() method in VerificationWrapper
37 … return copySelfWithNewVerificationMode(VerificationModeFactory.atLeast(minNumberOfInvocations)); in atLeast()
/external/mockito/src/test/java/org/mockito/internal/progress/
DAtLeastTest.java20 VerificationModeFactory.atLeast(-50); in shouldNotAllowNegativeNumberOfMinimumInvocations()
29 VerificationModeFactory.atLeast(0); in shouldAllowZeroInvocations()
/external/mockito/src/main/java/org/mockito/verification/
DVerificationWithTimeout.java69 VerificationMode atLeast(int minNumberOfInvocations); in atLeast() method
DVerificationAfterDelay.java50 VerificationMode atLeast(int minNumberOfInvocations); in atLeast() method
/external/mockito/src/test/java/org/mockitousage/stacktrace/
DModellingDescriptiveMessagesTest.java114 inOrder.verify(mock, atLeast(2)).simpleMethod(); in shouldSayTooLittleInvocationsInAtLeastModeInOrder()
121 verify(mock, atLeast(2)).simpleMethod(); in shouldSayTooLittleInvocationsInAtLeastMode()
/external/icu/icu4c/source/data/locales/
Dfr_CI.txt7 atLeast{"au moins {0}"}
Dfr_RE.txt7 atLeast{"au moins {0}"}
Dfr_CD.txt7 atLeast{"au moins {0}"}
Dfr_ML.txt7 atLeast{"au moins {0}"}
Dur_IN.txt13 atLeast{"{0}+"}
/external/mockito/src/test/java/org/mockitousage/bugs/
DAtLeastMarksAllInvocationsVerified.java29 verify(someMethods, atLeast(1)).allowedMethod(); in shouldFailBecauseDisallowedMethodWasCalled()
/external/mockito/src/main/java/org/mockito/
DMockito.java2495 public static VerificationMode atLeast(int minNumberOfInvocations) { in atLeast() method in Mockito
2496 return VerificationModeFactory.atLeast(minNumberOfInvocations); in atLeast()
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DContiguousSet.java56 effectiveRange = effectiveRange.intersection(Range.atLeast(domain.minValue())); in create()
/external/guava/guava/src/com/google/common/collect/
DRange.java283 public static <C extends Comparable<?>> Range<C> atLeast(C endpoint) { in atLeast() method in Range
299 return atLeast(endpoint); in downTo()
DContiguousSet.java59 effectiveRange = effectiveRange.intersection(Range.atLeast(domain.minValue())); in create()
/external/mockito/src/test/java/org/mockito/internal/util/reflection/
DLenientCopyToolTest.java158 verify(tool.fieldCopier, atLeast(3)).copyValue(any(), any(), any(Field.class)); in shouldContinueEvenIfThereAreProblemsCopyingSingleFieldValue()
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
DContiguousSetTest.java77 ContiguousSet.create(Range.atLeast(Integer.MIN_VALUE), integers())); in testEquals()
256 assertEquals(Range.atLeast(Integer.MIN_VALUE), in testRange_unboundedRange()

123456