Home
last modified time | relevance | path

Searched refs:spiedList (Results 1 – 1 of 1) sorted by relevance

/external/mockito/src/test/java/org/mockitousage/annotation/
DSpyAnnotationTest.java35 final List<String> spiedList = new ArrayList<String>(); field in SpyAnnotationTest
48 doReturn("foo").when(spiedList).get(10); in should_init_spy_by_instance()
49 assertEquals("foo", spiedList.get(10)); in should_init_spy_by_instance()
50 assertTrue(spiedList.isEmpty()); in should_init_spy_by_instance()
172 spiedList.get(10); // see shouldInitSpy in should_reset_spy()