@@ -243,14 +243,14 @@ Starting with https://issues.apache.org/jira/browse/SUREFIRE-1330[version 2.22.0
243243Surefire and Maven Failsafe provide
244244http://maven.apache.org/surefire/maven-surefire-plugin/examples/junit-platform.html[native support]
245245for 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.
248248
249249[[running-tests-build-maven-engines-configure]]
250250===== Configuring Test Engines
251251
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.
254254
255255To configure support for JUnit Jupiter based tests, configure `test` scoped dependencies
256256on the JUnit Jupiter API and the JUnit Jupiter `TestEngine` implementation similar to the
@@ -291,9 +291,9 @@ following.
291291 ...
292292----
293293
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.
297297
298298[source,xml,indent=0]
299299[subs=attributes+]
0 commit comments