Searched refs:func1 (Results 1 – 3 of 3) sorted by relevance
62 final IntUnaryOperator func1 = mock(IntUnaryOperator.class); in testDelete() local63 when(func1.applyAsInt(eq(1))).thenReturn(11); in testDelete()64 when(func1.applyAsInt(eq(2))).thenReturn(22); in testDelete()70 final AtomicReference<IntUnaryOperator> funcRef = new AtomicReference<>(func1); in testDelete()73 verify(func1, never()).applyAsInt(anyInt()); in testDelete()77 verify(func1, times(1)).applyAsInt(eq(2)); in testDelete()86 verify(func1, times(1)).applyAsInt(eq(2)); in testDelete()
2 deprecated.rs:9:11: note: did you mean 'func1'?3 deprecated.rs:8:13: note: 'func1' declared here
8 static void func1() {