@@ -243,14 +243,14 @@ Starting with https://issues.apache.org/jira/browse/SUREFIRE-1330[version 2.22.0
243
243
Surefire and Maven Failsafe provide
244
244
http://maven.apache.org/surefire/maven-surefire-plugin/examples/junit-platform.html[native support]
245
245
for executing tests on the JUnit Platform. The `pom.xml` file in the
246
- `{junit5-jupiter-starter-maven}` project demonstrates how to use it and can serve as a
247
- starting point for configuring your Maven build.
246
+ `{junit5-jupiter-starter-maven}` project demonstrates how to use the Maven Surefire plugin
247
+ and can serve as a starting point for configuring your Maven build.
248
248
249
249
[[running-tests-build-maven-engines-configure]]
250
250
===== Configuring Test Engines
251
251
252
- In order to have Maven Surefire run any tests at all, at least one `TestEngine`
253
- implementation must be added to the test classpath.
252
+ In order to have Maven Surefire or Maven Failsafe run any tests at all, at least one
253
+ `TestEngine` implementation must be added to the test classpath.
254
254
255
255
To configure support for JUnit Jupiter based tests, configure `test` scoped dependencies
256
256
on the JUnit Jupiter API and the JUnit Jupiter `TestEngine` implementation similar to the
@@ -291,9 +291,9 @@ following.
291
291
...
292
292
----
293
293
294
- Maven Surefire can run JUnit 4 based tests alongside Jupiter tests as long as you
295
- configure `test` scoped dependencies on JUnit 4 and the JUnit Vintage `TestEngine`
296
- implementation similar to the following.
294
+ Maven Surefire and Maven Failsafe can run JUnit 4 based tests alongside Jupiter tests as
295
+ long as you configure `test` scoped dependencies on JUnit 4 and the JUnit Vintage
296
+ `TestEngine` implementation similar to the following.
297
297
298
298
[source,xml,indent=0]
299
299
[subs=attributes+]
0 commit comments