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
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -23,8 +23,10 @@ In other words, your solution is not just an interpretation of the instructions
23
23
## How does Exercism apply TDD?
24
24
25
25
We've done the work of writing a unit test suite for you.
26
-
Your goal is to write a solution that contains just enough code to make all those unit tests pass, and no more.
26
+
Your goal is to write a solution that contains just enough code to make all those unit tests pass.
27
27
28
+
Keep this in mind: the TDD approach will help you get to the solution, but you don't need to stop there.
29
+
If you want to extend your solution beyond the requirements, you are welcome to do so.
28
30
Should you choose to work with a mentor (and we encourage you to do that once you get the tests passing), they can help you refactor and refine your initial implementation, or even propose new unit tests.
0 commit comments