OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:Spy
(Results
1 - 5
of
5
) sorted by null
/external/mockito/src/org/mockito/
Spy.java
13
* Allows shorthand wrapping of field instances in an
spy
object.
21
* @
Spy
Foo spyOnFoo = new Foo("argument");
23
* @
Spy
Bar spyOnBar;
35
* Foo spyOnFoo = Mockito.
spy
(new Foo("argument"));
36
* Bar spyOnFoo = Mockito.
spy
(new Bar());
40
* <strong>The field annotated with @
Spy
can be initialized by Mockito if a zero argument constructor
44
* <strong>The field annotated with @
Spy
can be initialized explicitly at declaration point.
64
* List
spy
=
spy
(list);
66
* //Impossible: real method is called so
spy
.get(0) throws IndexOutOfBoundsException (the list is yet empty)
[
all
...]
/external/dexmaker/lib/
mockito-core-1.9.1-SNAPSHOT.jar
/external/robolectric/v1/lib/test/
mockito-core-1.8.5.jar
/prebuilts/tools/common/m2/repository/org/mockito/mockito-all/1.9.5/
mockito-all-1.9.5.jar
/prebuilts/tools/common/m2/repository/org/mockito/mockito-core/1.9.5/
mockito-core-1.9.5.jar
Completed in 189 milliseconds