@@ -5,19 +5,19 @@ Dmitrij Drandarov <https://github.com/dmitrij-drandarov>
5
5
6
6
== Authors
7
7
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]
9
9
10
10
== Repository Introduction
11
11
12
12
This repository contains several modules focused on showing different frameworks and tools in conjunction with JUnit 5.
13
13
These are however only presented as code since the main focus of this repository is the introduction to JUnit 5.
14
14
15
15
.**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**]
18
18
* 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**]
21
21
22
22
= JUnit 5 Quick-Start-Guide
23
23
@@ -76,7 +76,7 @@ If you need lagacy support for JUnit 4 or even JUnit 3 to run in parallel to JUn
76
76
----
77
77
78
78
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)]
80
80
81
81
82
82
=== Syntax
@@ -159,7 +159,7 @@ void assumptionsTest() {
159
159
----
160
160
161
161
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)]
163
163
164
164
=== General
165
165
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) {
310
310
----
311
311
312
312
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)]
314
314
315
315
=== Test-Parameters
316
316
Building upon the `ParameterResolver` paragraph of the last chapter let's look at implementing your own `ParameterResolver`.
@@ -482,7 +482,7 @@ void disabledOnMondayTest() {}
482
482
Again: This could without problem be placed on class-level.
483
483
484
484
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)]
486
486
487
487
=== Extended disabled weekdays
488
488
Let's extend that `@DisabledOnMonday` annotation a bit.
0 commit comments