OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ReturnsElementsOf
(Results
1 - 3
of
3
) sorted by null
/external/mockito/src/org/mockito/stubbing/answers/
ReturnsElementsOf.java
17
* when(mock.foo()).thenReturn(new
ReturnsElementsOf
(Arrays.asList(1, 2, 3)));
20
* @deprecated Use {@link org.mockito.AdditionalAnswers#
returnsElementsOf
}
23
public class
ReturnsElementsOf
extends org.mockito.internal.stubbing.answers.
ReturnsElementsOf
{
26
public
ReturnsElementsOf
(Collection<?> elements) {
/external/mockito/src/org/mockito/internal/stubbing/answers/
ReturnsElementsOf.java
22
* when(mock.foo()).thenAnswer(new
ReturnsElementsOf
(Arrays.asList(1, 2, 3)));
28
* {@link org.mockito.AdditionalAnswers#
returnsElementsOf
(java.util.Collection)}
33
public class
ReturnsElementsOf
implements Answer<Object> {
37
public
ReturnsElementsOf
(Collection<?> elements) {
39
throw new MockitoException("
ReturnsElementsOf
does not accept null as constructor argument.\n" +
/external/dexmaker/lib/
mockito-core-1.9.1-SNAPSHOT.jar
Completed in 167 milliseconds