Skip to content

Commit 90ec479

Browse files
committed
Fix links
1 parent 9d3b3ea commit 90ec479

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

README.adoc

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@ Dmitrij Drandarov <https://github.com/dmitrij-drandarov>
55

66
== Authors
77

8-
* Dmitrij Drandarov | link:https://github.com/dmitrij-drandarov[GitHub]
8+
* Dmitrij Drandarov | link:https://github.com/dmitrij-drandarov[GitHub] | link:https://www.xing.com/profile/Dmitrij_Drandarov[Xing]
99

1010
== Repository Introduction
1111

1212
This repository contains several modules focused on showing different frameworks and tools in conjunction with JUnit 5.
1313
These are however only presented as code since the main focus of this repository is the introduction to JUnit 5.
1414

1515
.**More practices, frameworks and tools in conjunction with JUnit 5**
16-
* link:00_junit_best_practice/src/test/java/com/dmitrijdrandarov/bestpractice[**Best practices**]
17-
* link:02_assertj/src/test/java/com/dmitrijdrandarov/assertj[**AssertJ**]
16+
* link:00_junit_best_practice/src/test/java/com.dmitrijdrandarov/bestpractice[**Best practices**]
17+
* link:02_assertj/src/test/java/com.dmitrijdrandarov/assertj[**AssertJ**]
1818
* link:03_spring[**Spring**]
19-
* link:04_testfx/src/test/java/com/dmitrijdrandarov/testfx[**TestFX**]
20-
* link:05_mockito/src/test/java/com/dmitrijdrandarov/mockito[**Mockito**]
19+
* link:04_testfx/src/test/java/com.dmitrijdrandarov/testfx[**TestFX**]
20+
* link:05_mockito/src/test/java/com.dmitrijdrandarov/mockito[**Mockito**]
2121

2222
= JUnit 5 Quick-Start-Guide
2323

@@ -76,7 +76,7 @@ If you need lagacy support for JUnit 4 or even JUnit 3 to run in parallel to JUn
7676
----
7777

7878

79-
== General changes link:01_junit_5/src/test/java/com/dmitrijdrandarov/junit5/JUnit5_00_GeneralChanges.java[(code)]
79+
== General changes link:01_junit_5/src/test/java/com.dmitrijdrandarov/junit5/JUnit5_01_GeneralChanges.java[(code)]
8080

8181

8282
=== Syntax
@@ -159,7 +159,7 @@ void assumptionsTest() {
159159
----
160160

161161

162-
== New features: Basics link:01_junit_5/src/test/java/com/dmitrijdrandarov/junit5/JUnit5_01_NewFeaturesBasics.java[(code)]
162+
== New features: Basics link:01_junit_5/src/test/java/com.dmitrijdrandarov/junit5/JUnit5_02_NewFeaturesBasics.java[(code)]
163163

164164
=== General
165165
Here I want to introduce some basics for the new features available in JUnit 5.
@@ -310,7 +310,7 @@ void parameterTest(TestInfo testInfo, TestReporter testReporter) {
310310
----
311311

312312

313-
== New features: Advanced link:01_junit_5/src/test/java/com/dmitrijdrandarov/junit5/JUnit5_02_NewFeaturesAdvanced.java[(code)]
313+
== New features: Advanced link:01_junit_5/src/test/java/com.dmitrijdrandarov/junit5/JUnit5_03_NewFeaturesAdvanced.java[(code)]
314314

315315
=== Test-Parameters
316316
Building upon the `ParameterResolver` paragraph of the last chapter let's look at implementing your own `ParameterResolver`.
@@ -482,7 +482,7 @@ void disabledOnMondayTest() {}
482482
Again: This could without problem be placed on class-level.
483483

484484

485-
== Advanced Test-Samples link:01_junit_5/src/test/java/com/dmitrijdrandarov/junit5/JUnit5_03_AdvancedTestSamples.java[(code)]
485+
== Advanced Examples link:01_junit_5/src/test/java/com.dmitrijdrandarov/junit5/JUnit5_04_AdvancedExamples.java[(code)]
486486

487487
=== Extended disabled weekdays
488488
Let's extend that `@DisabledOnMonday` annotation a bit.

0 commit comments

Comments
 (0)