Searched refs:anyTimes (Results 1 – 7 of 7) sorted by relevance
256 expect(map.containsKey(anyObject())).andReturn(false).anyTimes();257 expect(map.get(anyObject())).andReturn(null).anyTimes();258 expect(map.isEmpty()).andReturn(true).anyTimes();259 expect(map.remove(anyObject())).andReturn(null).anyTimes();260 expect(map.size()).andReturn(0).anyTimes();263 .anyTimes();265 expectLastCall().anyTimes();292 Iterators.<Entry<String, Boolean>>emptyIterator()).anyTimes();296 expect(map.containsKey(anyObject())).andReturn(false).anyTimes();297 expect(map.isEmpty()).andReturn(true).anyTimes();[all …]
66 .anyTimes(); in getMockElement()75 EasyMock.expect(mockMirror.getAnnotationType()).andReturn(getMockAnnotationType()).anyTimes(); in getMockAnnotationMirrors()77 .anyTimes(); in getMockAnnotationMirrors()93 Arrays.asList(new String[] {clazz.getName() + ".class"})).anyTimes(); in getMockAnnotationValue()152 EasyMock.expect(mockEnvironment.getMessager()).andReturn(getMockMessager()).anyTimes();153 EasyMock.expect(mockEnvironment.getFiler()).andReturn(mockFiler).anyTimes();154 EasyMock.expect(mockEnvironment.getOptions()).andReturn(getMockOptions()).anyTimes();189 mockFileObject).anyTimes();204 EasyMock.expect(mockFileObject.openOutputStream()).andReturn(outStream).anyTimes();218 (Set) elementsWithAnnotation).anyTimes();[all …]
150 IExpectationSetters<T> anyTimes(); in anyTimes() method
643 setter.anyTimes(); in callWithConvertedRange()
29 import static com.google.testing.littlemock.LittleMock.anyTimes;884 verify(mFoo, anyTimes()).aBoolean(); in testCreateACaptureButDontUseItShouldFailAtNextVerify()1374 verify(mFoo, anyTimes()).aBar(); in testConcurrentModificationExceptions()1397 verify(mFoo, anyTimes()).aBar(); in testCannotVerifyFromSecondThreadAfterStubbingInFirst()1412 verify(mFoo, anyTimes()).aBar(); in testCannotStubFromSecondThreadAfterVerifyingInFirst()
254 public IExpectationSetters<Object> anyTimes() { in anyTimes() method in MocksControl
260 public static CallCount anyTimes() { return new CallCount(0, Long.MAX_VALUE); }