You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: junit-jupiter-migration-support/src/main/java/org/junit/jupiter/migrationsupport/parameterized/ParameterizedExtension.java
Copy file name to clipboardExpand all lines: junit-jupiter-migration-support/src/test/java/org/junit/jupiter/migrationsupport/parameterized/ParameterizedExtensionTests.java
+41-9Lines changed: 41 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -40,7 +40,7 @@
40
40
importorg.junit.runners.Parameterized;
41
41
importorg.junit.runners.Parameterized.Parameters;
42
42
43
-
classParametrizedExtensionTests {
43
+
classParameterizedExtensionTests {
44
44
45
45
@Test
46
46
voidparametrizedWithParameterFieldInjection() {
@@ -63,7 +63,7 @@ public static Collection<Object[]> data() {
63
63
publicintfExpected;
64
64
65
65
@TestTemplate
66
-
publicvoidtest() {
66
+
voidtest() {
67
67
assertEquals(fExpected, compute(fInput));
68
68
}
69
69
@@ -104,7 +104,7 @@ public ParameterizedTestWithConstructor(int a, int b) {
104
104
}
105
105
106
106
@TestTemplate
107
-
publicvoidtest() {
107
+
voidtest() {
108
108
assertNotEquals(a, b);
109
109
}
110
110
}
@@ -127,7 +127,7 @@ public UnMatchedConstructor(int a) {
127
127
}
128
128
129
129
@TestTemplate
130
-
publicvoiddummy() {
130
+
voiddummy() {
131
131
132
132
}
133
133
}
@@ -152,7 +152,7 @@ public static Collection<Object[]> data() {
152
152
}
153
153
154
154
@TestTemplate
155
-
publicvoiddummy() {
155
+
voiddummy() {
156
156
157
157
}
158
158
}
@@ -182,7 +182,7 @@ public static Collection<Object[]> data() {
182
182
}
183
183
184
184
@TestTemplate
185
-
publicvoiddummy() {
185
+
voiddummy() {
186
186
187
187
}
188
188
}
@@ -208,7 +208,7 @@ public static int params() {
208
208
}
209
209
210
210
@TestTemplate
211
-
publicvoiddummy() {
211
+
voiddummy() {
212
212
213
213
}
214
214
}
@@ -231,7 +231,7 @@ public static Collection<Object[]> data() {
231
231
}
232
232
233
233
@TestTemplate
234
-
publicvoiddummy() {
234
+
voiddummy() {
235
235
236
236
}
237
237
}
@@ -256,7 +256,7 @@ public static Collection<Object[]> data() {
0 commit comments