You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: using/solving-exercises/tdd.md
+6-5
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ Test-Driven Development (sometimes called Test-First Development or Test-Driven
5
5
## On Exercism, the tests _are_ the requirements!
6
6
7
7
All Practice Exercises you work on (those ones that don't teach you a new concept) will have some instructions describing in general terms what you need to do.
8
-
By design, these instructions do not account for programming-language-specific implementation details because they are shared by all of Exercism’s 70+ language tracks.
8
+
By design, these instructions do not account for programming-language-specific implementation details because they are shared by all of Exercism's 70+ language tracks.
9
9
Some language tracks will append more specific details for you, but not all of them do.
10
10
11
11
When you start working on a Practice Exercise, give the instructions a careful read.
@@ -31,12 +31,12 @@ Should you choose to work with a mentor (and we encourage you to do that once yo
31
31
32
32
## Working in the online editor
33
33
34
-
When you’re working in the code editor on Exercism’s website, you can read the tests but you are not able to edit them.
34
+
When you're working in the code editor on Exercism's website, you can read the tests but you are not able to edit them.
35
35
All tests will be executed each time you run them, regardless of any "skip" mechanisms noted in the test file.
36
36
37
37
Test results will default to expanding the first failed test message (although what is displayed varies by track).
38
38
39
-
Don’t be discouraged by a large number of failing tests.
39
+
Don't be discouraged by a large number of failing tests.
40
40
Focus on making them pass one-by-one.
41
41
42
42
## Working locally
@@ -48,10 +48,11 @@ We do this to encourage you to follow this workflow:
48
48
49
49
1. Before adding any new code, run the test suite: you should see a failing test.
50
50
1. Add _just enough_ code to pass the test.
51
-
1. Run the test suite. If the test still fails, repeat the last step.
51
+
1. Run the test suite.
52
+
If the test still fails, repeat the last step.
52
53
1. Review your code and refactor as desired, making sure the tests still pass.
53
54
1. Once you have passed all the tests, congratulations you're done!
54
-
1. Otherwise, "unskip" the next test and goto 1.
55
+
1. Otherwise, "unskip" the next test and goto 1.
55
56
56
57
Exactly how tests are "unskipped" (or activated) depends on the track.
57
58
For some tracks, it might be commenting or removing an annotation.
0 commit comments