@@ -271,9 +271,9 @@ following.
271
271
</plugin>
272
272
</plugins>
273
273
</build>
274
- ...
274
+ <!-- ... -->
275
275
<dependencies>
276
- ...
276
+ <!-- ... -->
277
277
<dependency>
278
278
<groupId>org.junit.jupiter</groupId>
279
279
<artifactId>junit-jupiter-api</artifactId>
@@ -286,9 +286,9 @@ following.
286
286
<version>{jupiter-version}</version>
287
287
<scope>test</scope>
288
288
</dependency>
289
- ...
289
+ <!-- ... -->
290
290
</dependencies>
291
- ...
291
+ <!-- ... -->
292
292
----
293
293
294
294
Maven Surefire and Maven Failsafe can run JUnit 4 based tests alongside Jupiter tests as
@@ -298,7 +298,7 @@ long as you configure `test` scoped dependencies on JUnit 4 and the JUnit Vintag
298
298
[source,xml,indent=0]
299
299
[subs=attributes+]
300
300
----
301
- ...
301
+ <!-- ... -->
302
302
<build>
303
303
<plugins>
304
304
<plugin>
@@ -311,9 +311,9 @@ long as you configure `test` scoped dependencies on JUnit 4 and the JUnit Vintag
311
311
</plugin>
312
312
</plugins>
313
313
</build>
314
- ...
314
+ <!-- ... -->
315
315
<dependencies>
316
- ...
316
+ <!-- ... -->
317
317
<dependency>
318
318
<groupId>junit</groupId>
319
319
<artifactId>junit</artifactId>
@@ -326,9 +326,9 @@ long as you configure `test` scoped dependencies on JUnit 4 and the JUnit Vintag
326
326
<version>{vintage-version}</version>
327
327
<scope>test</scope>
328
328
</dependency>
329
- ...
329
+ <!-- ... -->
330
330
</dependencies>
331
- ...
331
+ <!-- ... -->
332
332
----
333
333
334
334
[[running-tests-build-maven-filter-test-class-names]]
@@ -352,7 +352,7 @@ from excluding static member classes, you can override its exclude rules as foll
352
352
[subs=attributes+]
353
353
.Overriding exclude rules of Maven Surefire
354
354
----
355
- ...
355
+ <!-- ... -->
356
356
<build>
357
357
<plugins>
358
358
<plugin>
@@ -366,7 +366,7 @@ from excluding static member classes, you can override its exclude rules as foll
366
366
</plugin>
367
367
</plugins>
368
368
</build>
369
- ...
369
+ <!-- ... -->
370
370
----
371
371
372
372
Please see the
@@ -385,7 +385,7 @@ the following configuration properties.
385
385
[source,xml,indent=0]
386
386
[subs=attributes+]
387
387
----
388
- ...
388
+ <!-- ... -->
389
389
<build>
390
390
<plugins>
391
391
<plugin>
@@ -398,7 +398,7 @@ the following configuration properties.
398
398
</plugin>
399
399
</plugins>
400
400
</build>
401
- ...
401
+ <!-- ... -->
402
402
----
403
403
404
404
[[running-tests-build-maven-config-params]]
@@ -412,7 +412,7 @@ below) or via the `junit-platform.properties` file.
412
412
[source,xml,indent=0]
413
413
[subs=attributes+]
414
414
----
415
- ...
415
+ <!-- ... -->
416
416
<build>
417
417
<plugins>
418
418
<plugin>
@@ -430,7 +430,7 @@ below) or via the `junit-platform.properties` file.
430
430
</plugin>
431
431
</plugins>
432
432
</build>
433
- ...
433
+ <!-- ... -->
434
434
----
435
435
436
436
[[running-tests-build-ant]]
@@ -491,7 +491,7 @@ test classes from multiple locations.
491
491
<!-- The location where you have your compiled classes -->
492
492
<pathelement location="${build.classes.dir}" />
493
493
</path>
494
- ....
494
+ <!-- ... -->
495
495
<junitlauncher>
496
496
<classpath refid="test.classpath" />
497
497
<testclasses outputdir="${output.dir}">
0 commit comments