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

- old
+ new

@@ -15,18 +15,19 @@ * A = [3, 4], B = [1, 2, 3, 4, 5], A is a sublist of B * A = [1, 2, 3], B = [1, 2, 3], A is equal to B * A = [1, 2, 3, 4, 5], B = [2, 3, 4], A is a superlist of B * A = [1, 2, 4], B = [1, 2, 3, 4, 5], A is not a superlist of, sublist of or equal to B +# 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. - ## Submitting Incomplete Solutions + It's possible to submit an incomplete solution so you can see how others have completed the exercise.