Searched refs:withFinal (Results 1 – 2 of 2) sorted by relevance
25 @Mock private WithFinal withFinal; field in DetectingFinalMethodsTest29 assumeTrue("Does not apply for inline mocks", withFinal.getClass() != WithFinal.class); in shouldFailWithUnfinishedVerification()30 verify(withFinal).foo(); in shouldFailWithUnfinishedVerification()32 verify(withFinal).foo(); in shouldFailWithUnfinishedVerification()39 assumeTrue("Does not apply for inline mocks", withFinal.getClass() != WithFinal.class); in shouldFailWithUnfinishedStubbing()40 withFinal = mock(WithFinal.class); in shouldFailWithUnfinishedStubbing()42 when(withFinal.foo()).thenReturn(null); in shouldFailWithUnfinishedStubbing()
34 @Mock private WithFinal withFinal; field in DetectingMisusedMatchersTest88 assumeTrue("Does not apply for inline mocks", withFinal.getClass() != WithFinal.class); in shouldSayUnfinishedVerificationButNotInvalidUseOfMatchers()89 verify(withFinal).finalMethod(anyObject()); in shouldSayUnfinishedVerificationButNotInvalidUseOfMatchers()91 verify(withFinal); in shouldSayUnfinishedVerificationButNotInvalidUseOfMatchers()