tracks/java/exercises/two-fer/README.md in trackler-2.2.1.47 vs tracks/java/exercises/two-fer/README.md in trackler-2.2.1.48

- old
+ new

@@ -38,10 +38,12 @@ also important not to over-engineer a solution. It's important to remember that the goal is to make code as expressive and readable as we can. +# Java Tips + Most Java exercises include multiple test cases. These cases are structured to support a useful process known as [test-driven development (TDD)](https://en.wikipedia.org/wiki/Test-driven_development). TDD involves repeating a structured cycle that helps programmers build complex functionality piece by piece rather than all at once. That cycle can be @@ -78,21 +80,22 @@ 3. Clean up your code, making sure that all non-skipped tests continue to pass. 4. Remove the topmost `@Ignore` annotation in the test file. 5. Return to step 1 until no tests are skipped and all tests pass! +# Running the tests -To run the tests: +You can run all the tests for an exercise by entering ```sh $ gradle test ``` -For more detailed info about the Java track see the [help page](http://exercism.io/languages/java). +in your terminal. - ## Source This is an exercise to introduce users to basic programming constructs, just after hello World. [https://en.wikipedia.org/wiki/Two-fer](https://en.wikipedia.org/wiki/Two-fer) ## Submitting Incomplete Solutions + It's possible to submit an incomplete solution so you can see how others have completed the exercise.