Skip to content

Commit e053743

Browse files
committed
Update links to use docs.junit.org
1 parent f40b153 commit e053743

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,4 +121,4 @@ for the JUnit Platform using the Java Platform Module System.
121121
[ci-badge]:https://github.com/junit-team/junit5-samples/workflows/Build%20all%20samples/badge.svg "CI build status"
122122
[ci-actions]: https://github.com/junit-team/junit5-samples/actions
123123

124-
[guide-custom-engine]: https://junit.org/junit5/docs/current/user-guide/#launcher-api-engines-custom "Plugging in Your Own Test Engine"
124+
[guide-custom-engine]: https://docs.junit.org/current/user-guide/#launcher-api-engines-custom "Plugging in Your Own Test Engine"

junit5-jupiter-starter-ant/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ tests using [Apache Ant](https://ant.apache.org/) 1.10.4 or higher.
66
This sample project does not aim to demonstrate how to use the JUnit Jupiter APIs.
77

88
For detailed information on the JUnit Jupiter programming and extension models,
9-
please consult the [User Guide](https://junit.org/junit5/docs/current/user-guide/).
9+
please consult the [User Guide](https://docs.junit.org/current/user-guide/).

junit5-jupiter-starter-ant/build.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<javac destdir="build/test" classpathref="test.classpath" srcdir="src/test/java" includeantruntime="false"/>
3333
</target>
3434

35-
<!-- https://junit.org/junit5/docs/snapshot/user-guide/#running-tests-build-ant -->
35+
<!-- https://docs.junit.org/snapshot/user-guide/#running-tests-build-ant -->
3636
<target name="test.junit.launcher" depends="compile">
3737
<junitlauncher haltOnFailure="true" printSummary="true">
3838
<classpath refid="test.classpath"/>
@@ -46,7 +46,7 @@
4646
</junitlauncher>
4747
</target>
4848

49-
<!-- https://junit.org/junit5/docs/current/user-guide/#running-tests-console-launcher -->
49+
<!-- https://docs.junit.org/current/user-guide/#running-tests-console-launcher -->
5050
<target name="test.console.launcher" depends="compile">
5151
<java classpathref="test.classpath" classname="org.junit.platform.console.ConsoleLauncher" fork="true" failonerror="true">
5252
<arg value="execute"/>

junit5-migration-gradle/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ the JUnit Platform.
77

88
This sample project does not aim to demonstrate how to use the JUnit Jupiter APIs.
99
For detailed information on the JUnit Jupiter programming and extension models,
10-
please consult the [User Guide](https://junit.org/junit5/docs/current/user-guide/).
10+
please consult the [User Guide](https://docs.junit.org/current/user-guide/).
1111

1212
## Enabling the JUnit Platform
1313

junit5-migration-maven/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ the JUnit Platform.
77

88
This sample project does not aim to demonstrate how to use the JUnit Jupiter APIs.
99
For detailed information on the JUnit Jupiter programming and extension models,
10-
please consult the [User Guide](https://junit.org/junit5/docs/current/user-guide/).
10+
please consult the [User Guide](https://docs.junit.org/current/user-guide/).
1111

1212
Please note that this project uses the [Maven Wrapper](https://github.com/takari/maven-wrapper).
1313
Thus, to ensure that the correct version of Maven is used, invoke `mvnw` instead of `mvn`.

junit5-modular-world/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Invoke the [jshell](https://docs.oracle.com/javase/9/tools/jshell.htm) script
77

88
This sample project does not aim to demonstrate how to use the JUnit Platform APIs.
99
For detailed information on the JUnit Platform programming and extension models,
10-
please consult the [User Guide](https://junit.org/junit5/docs/current/user-guide/).
10+
please consult the [User Guide](https://docs.junit.org/current/user-guide/).
1111

1212
## Source Layout
1313

junit5-multiple-engines/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ using the JUnit Platform with various [TestEngine][guide-custom-engine] implemen
55

66
## Provided by junit.org
77

8-
* [JUnit Jupiter](https://junit.org/junit5/docs/current/user-guide)
9-
* [JUnit Vintage](https://junit.org/junit5/docs/current/user-guide)
10-
* [JUnit Platform Suite Engine](https://junit.org/junit5/docs/current/user-guide/#junit-platform-suite-engine)
8+
* [JUnit Jupiter](https://docs.junit.org/current/user-guide)
9+
* [JUnit Vintage](https://docs.junit.org/current/user-guide)
10+
* [JUnit Platform Suite Engine](https://docs.junit.org/current/user-guide/#junit-platform-suite-engine)
1111
* [TestNG](https://github.com/junit-team/testng-engine)
1212

1313
## 3rd-party test engines
@@ -24,4 +24,4 @@ See https://github.com/junit-team/junit5/wiki/Third-party-Extensions#junit-platf
2424
for even more test engine implementations and feel free to add minimal working samples of other
2525
engines to this project and the wiki page.
2626

27-
[guide-custom-engine]: https://junit.org/junit5/docs/current/user-guide/#launcher-api-engines-custom "Plugging in Your Own Test Engine"
27+
[guide-custom-engine]: https://docs.junit.org/current/user-guide/#launcher-api-engines-custom "Plugging in Your Own Test Engine"

0 commit comments

Comments
 (0)