7
7
import static junit .framework .TestCase .assertEquals ;
8
8
import static junit .framework .TestCase .assertNull ;
9
9
import static junit .framework .TestCase .fail ;
10
+ import static org .assertj .core .api .Assertions .assertThatThrownBy ;
11
+ import static org .mockito .ArgumentMatchers .any ;
10
12
import static org .mockito .Mockito .times ;
11
13
12
14
import java .util .concurrent .atomic .AtomicReference ;
13
15
16
+ import org .assertj .core .api .ThrowableAssert ;
14
17
import org .junit .Test ;
15
18
import org .mockito .MockedStatic ;
16
19
import org .mockito .Mockito ;
@@ -46,15 +49,15 @@ public void testStaticMockWithVerificationFailed() {
46
49
}
47
50
48
51
@ Test
49
- public void testStaticMockWithMoInteractions () {
52
+ public void testStaticMockWithNoInteractions () {
50
53
try (MockedStatic <Dummy > dummy = Mockito .mockStatic (Dummy .class )) {
51
54
dummy .when (Dummy ::foo ).thenReturn ("bar" );
52
55
dummy .verifyNoInteractions ();
53
56
}
54
57
}
55
58
56
59
@ Test (expected = NoInteractionsWanted .class )
57
- public void testStaticMockWithMoInteractionsFailed () {
60
+ public void testStaticMockWithNoInteractionsFailed () {
58
61
try (MockedStatic <Dummy > dummy = Mockito .mockStatic (Dummy .class )) {
59
62
dummy .when (Dummy ::foo ).thenReturn ("bar" );
60
63
assertEquals ("bar" , Dummy .foo ());
@@ -63,7 +66,7 @@ public void testStaticMockWithMoInteractionsFailed() {
63
66
}
64
67
65
68
@ Test
66
- public void testStaticMockWithMoMoreInteractions () {
69
+ public void testStaticMockWithNoMoreInteractions () {
67
70
try (MockedStatic <Dummy > dummy = Mockito .mockStatic (Dummy .class )) {
68
71
dummy .when (Dummy ::foo ).thenReturn ("bar" );
69
72
assertEquals ("bar" , Dummy .foo ());
@@ -73,7 +76,7 @@ public void testStaticMockWithMoMoreInteractions() {
73
76
}
74
77
75
78
@ Test (expected = NoInteractionsWanted .class )
76
- public void testStaticMockWithMoMoreInteractionsFailed () {
79
+ public void testStaticMockWithNoMoreInteractionsFailed () {
77
80
try (MockedStatic <Dummy > dummy = Mockito .mockStatic (Dummy .class )) {
78
81
dummy .when (Dummy ::foo ).thenReturn ("bar" );
79
82
assertEquals ("bar" , Dummy .foo ());
@@ -171,12 +174,27 @@ public void testStaticMockVoid() {
171
174
try (MockedStatic <Dummy > dummy = Mockito .mockStatic (Dummy .class )) {
172
175
Dummy .fooVoid ("bar" );
173
176
assertNull (Dummy .var1 );
174
- dummy .verify (()-> Dummy .fooVoid ("bar" ));
177
+ dummy .verify (() -> Dummy .fooVoid ("bar" ));
175
178
}
176
179
Dummy .fooVoid ("bar" );
177
180
assertEquals ("bar" , Dummy .var1 );
178
181
}
179
182
183
+ @ Test
184
+ public void testStaticMockMustUseValidMatchers () {
185
+ try (MockedStatic <Dummy > mockedClass = Mockito .mockStatic (Dummy .class )) {
186
+ assertThatThrownBy (
187
+ new ThrowableAssert .ThrowingCallable () {
188
+ public void call () {
189
+ mockedClass .when (() -> Dummy .fooVoid ("foo" , any ())).thenReturn (null );
190
+ }
191
+ })
192
+ .hasMessageContaining ("Invalid use of argument matchers!" );
193
+
194
+ Dummy .fooVoid ("foo" , "bar" );
195
+ }
196
+ }
197
+
180
198
static class Dummy {
181
199
182
200
static String var1 = null ;
@@ -188,5 +206,9 @@ static String foo() {
188
206
static void fooVoid (String var2 ) {
189
207
var1 = var2 ;
190
208
}
209
+
210
+ static void fooVoid (String var2 , String var3 ) {
211
+ var1 = var2 ;
212
+ }
191
213
}
192
214
}
0 commit comments