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.java37 final List<String> spiedList = new ArrayList<String>(); field in SpyAnnotationTest
53 doReturn("foo").when(spiedList).get(10); in should_init_spy_by_instance()
54 assertEquals("foo", spiedList.get(10)); in should_init_spy_by_instance()
55 assertTrue(spiedList.isEmpty()); in should_init_spy_by_instance()
177 spiedList.get(10); // see shouldInitSpy in should_reset_spy()