diff --git a/manual/tutorial-HelloWorldWithAnt.html b/manual/tutorial-HelloWorldWithAnt.html index 5d1f306ae..02d9f7212 100644 --- a/manual/tutorial-HelloWorldWithAnt.html +++ b/manual/tutorial-HelloWorldWithAnt.html @@ -386,7 +386,7 @@ public class HelloWorldTest {
Because we don't have real business logic to test, this test class is very small: just showing how to start. For
further information see the JUnit documentation [3] and the manual of junit task. Now we
-add a junit
code> instruction to our buildfile:
junit
instruction to our buildfile:
... @@ -428,9 +428,9 @@ the future just by naming them*Test.java
. This is a common naming... junit: - [junit] Running HelloWorldTest - [junit] Tests run: 2, Failures: 1, Errors: 0, Time elapsed: 0,01 sec - [junit] Test HelloWorldTest FAILED + [junit] Running oata.HelloWorldTest + [junit] Tests run: 2, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 0,01 sec + [junit] Test oata.HelloWorldTest FAILED BUILD SUCCESSFUL ...