Modified:
/wiki/BasicTutorial.wiki
=======================================
--- /wiki/BasicTutorial.wiki Fri Aug 7 02:57:18 2009
+++ /wiki/BasicTutorial.wiki Fri Aug 7 03:23:14 2009
@@ -1,4 +1,5 @@
#summary How to write your first Test
+#labels Featured,Phase-Implementation
= Introduction =
@@ -6,7 +7,7 @@
= Details =
-Every test fixture (method that includes one or more assertion) must be
prefixed with the lower cased word "test". You can add two special
functions "setup" and "tearDown" that will be executed just before and
after each test method. They are used to prepare and clean-up the tests
environment.
+Every test fixture (method that includes one or more assertion) must be
prefixed with the lower cased word "test". You can add two special
functions "setup" and "teardown" that will be executed just before and
after each test method. They are used to prepare and clean-up the tests
environment.
Test cases classes (classes that include one or more text fixture) do not
have to extend/implement any special class/interface. The only condition to
make them work is that they use the naming described above and that they
have the "public" modifier.
Assertions are made accessing the static methods of the Assert class.