Home | History | Annotate | Download | only in jsr166

Lines Matching refs:found

53         final ArrayList found = new ArrayList();
54 Consumer<Object> spy = (o) -> { found.add(o); };
56 assertTrue(found.isEmpty());
60 assertEquals(Collections.singletonList(x), found);
61 found.clear();
65 assertEquals(2, found.size());
66 assertTrue(found.contains(x));
67 assertTrue(found.contains(y));
68 found.clear();
72 assertTrue(found.isEmpty());