Skip to content

Commit dcc5f29

Browse files
committed
adapt xtrem tdd links
1 parent b350530 commit dcc5f29

File tree

17 files changed

+21
-21
lines changed

17 files changed

+21
-21
lines changed

docs/exercise/day08/solution/challenge-done.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Here are the business rules :
1212
- Any other characters are not authorized.
1313
```
1414

15-
We can do it using [`Example Mapping`](https://xtrem-tdd.netlify.app/Flavours/example-mapping) workshop.
15+
We can do it using [`Example Mapping`](https://xtrem-tdd.netlify.app/Flavours/Practices/example-mapping) workshop.
1616

1717
Here are some examples we can use for this business rule:
1818

@@ -26,7 +26,7 @@ Here are some examples we can use for this business rule:
2626

2727
We design the method from our test.
2828

29-
🟢 Then we [generate the code through our IDE](https://xtrem-tdd.netlify.app/Flavours/generate-code-from-usage)
29+
🟢 Then we [generate the code through our IDE](https://xtrem-tdd.netlify.app/Flavours/Design/generate-code-from-usage)
3030

3131
🔵 We can move the generated class to a named package (`password`)
3232

docs/exercise/day08/solution/step-by-step.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Here are the business rules :
1515
- Any other characters are not authorized.
1616
```
1717

18-
We can do it using [`Example Mapping`](https://xtrem-tdd.netlify.app/Flavours/example-mapping) workshop.
18+
We can do it using [`Example Mapping`](https://xtrem-tdd.netlify.app/Flavours/Practices/example-mapping) workshop.
1919

2020
### Contains at least 8 characters
2121

@@ -33,7 +33,7 @@ We design the method from our test.
3333

3434
![Our first failing test](img/first-failing-test.png)
3535

36-
🟢 Then we [generate the code through our IDE](https://xtrem-tdd.netlify.app/Flavours/generate-code-from-usage)
36+
🟢 Then we [generate the code through our IDE](https://xtrem-tdd.netlify.app/Flavours/Design/generate-code-from-usage)
3737

3838
After generation, it looks like this:
3939

docs/exercise/day09/solution/challenge-done.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
- It will update the `totalAmount` meaning that the second time we call the method the result will be wrong
1010

1111
- The responsibilities are mixed in the methods
12-
- We will apply the [`Command Query Separation` principle](https://xtrem-tdd.netlify.app/Flavours/command-query-separation) to fix this problem.
12+
- We will apply the [`Command Query Separation` principle](https://xtrem-tdd.netlify.app/Flavours/Design/command-query-separation) to fix this problem.
1313

1414
| | Returns | Side Effect |
1515
|-------------|:--------:|:-------------------------------:|

docs/exercise/day09/solution/step-by-step.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public class Client {
3737

3838
> "Asking a question should not change the answer" - Bertrand Meyer
3939
40-
We will apply the [`Command Query Separation` principle](https://xtrem-tdd.netlify.app/Flavours/command-query-separation) to fix this problem.
40+
We will apply the [`Command Query Separation` principle](https://xtrem-tdd.netlify.app/Flavours/Design/command-query-separation) to fix this problem.
4141

4242

4343
| | Returns | Side Effect |

docs/exercise/day11/solution/challenge-done.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The concept of [`libyear`](https://libyear.com/) can help us to do so.
2727
- It makes dependencies management much, much easier
2828

2929
If you want to know more on "how to keep you dependencies up-to-date",
30-
you read this [article](https://xtrem-tdd.netlify.app/Flavours/keep-dependencies-up-to-date).
30+
you read this [article](https://xtrem-tdd.netlify.app/Flavours/Practices/keep-dependencies-up-to-date).
3131

3232
>**Tip of the day: Code maintenance is not always about refactoring.**
3333

docs/exercise/day11/solution/step-by-step.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ This kind of tool can really help teams take decisions regarding dependencies de
5656

5757
![Failure](img/failing-build.png)
5858

59-
If you want to know more on "how to keep you dependencies up-to-date", you read this [article](https://xtrem-tdd.netlify.app/Flavours/keep-dependencies-up-to-date).
59+
If you want to know more on "how to keep you dependencies up-to-date", you read this [article](https://xtrem-tdd.netlify.app/Flavours/Practices/keep-dependencies-up-to-date).

docs/exercise/day13/solution/challenge-done.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
In all tests, we are manipulating Articles with Comments. We want to
66
create them in a simpler and more maintainable way.
77

8-
We can use [`Test Data Buidler`](https://xtrem-tdd.netlify.app/Flavours/test-data-builders) pattern to achieve this
8+
We can use [`Test Data Buidler`](https://xtrem-tdd.netlify.app/Flavours/Testing/test-data-builders) pattern to achieve this
99
purpose.
1010

1111
It will:

docs/exercise/day13/solution/step-by-step.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Day 13: Find a way to eliminate the irrelevant, and amplify the essentials of those tests.
22

3-
We can use [`Test Data Buidler`](https://xtrem-tdd.netlify.app/Flavours/test-data-builders) pattern to achieve this
3+
We can use [`Test Data Buidler`](https://xtrem-tdd.netlify.app/Flavours/Testing/test-data-builders) pattern to achieve this
44
purpose.
55

66
It will:
@@ -83,7 +83,7 @@ void setup() {
8383
}
8484
```
8585

86-
- We then [`generate code from usage`](https://xtrem-tdd.netlify.app/Flavours/generate-code-from-usage)
86+
- We then [`generate code from usage`](https://xtrem-tdd.netlify.app/Flavours/Design/generate-code-from-usage)
8787

8888
![Generate Code From Usage](img/generate-code-from-usage.png)
8989

docs/exercise/day17/solution/challenge-done.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
`How could we design one test that has the impact of thousands?`
44

5-
We can use [`Property-Based Testing`](https://xtrem-tdd.netlify.app/flavours/pbt/). Here we choose to use the
5+
We can use [`Property-Based Testing`](https://xtrem-tdd.netlify.app/Flavours/Testing/pbt). Here we choose to use the
66
library [`vavr-test`](https://github.com/vavr-io/vavr-test)(you may use alternatives like `junit quickcheck` for
77
example).
88

docs/exercise/day17/solution/step-by-step.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
`How could we design one test that has the impact of thousands?`
44

5-
We can use [`Property-Based Testing`](https://xtrem-tdd.netlify.app/flavours/pbt/). Here we choose to use the
5+
We can use [`Property-Based Testing`](https://xtrem-tdd.netlify.app/Flavours/Testing/pbt). Here we choose to use the
66
library [`vavr-test`](https://github.com/vavr-io/vavr-test)(you may use alternatives like `junit quickcheck` for
77
example).
88

0 commit comments

Comments
 (0)