aboutsummaryrefslogtreecommitdiffstats
path: root/devtest/README.txt
diff options
context:
space:
mode:
authorManolo Carrasco <manolo@apache.org>2010-05-12 13:47:14 +0000
committerManolo Carrasco <manolo@apache.org>2010-05-12 13:47:14 +0000
commitbd9fe1c2531df1fb5682ace03197a1aa8ded2da4 (patch)
tree2ec903271e616ae9208cf03c3c47e6cdce3ed4e4 /devtest/README.txt
parent5ecd54adf4d054d7e81208485ddae8ccec7206f6 (diff)
downloadgwtquery-bd9fe1c2531df1fb5682ace03197a1aa8ded2da4.tar.gz
gwtquery-bd9fe1c2531df1fb5682ace03197a1aa8ded2da4.zip
Added a module to speed up testing in development mode
Diffstat (limited to 'devtest/README.txt')
-rw-r--r--devtest/README.txt22
1 files changed, 22 insertions, 0 deletions
diff --git a/devtest/README.txt b/devtest/README.txt
new file mode 100644
index 00000000..54b9d5a3
--- /dev/null
+++ b/devtest/README.txt
@@ -0,0 +1,22 @@
+
+
+This module is thought to run tests in development mode in
+order to speed up TDD.
+
+- Put your tests in the DevTestRunner class.
+- Call gwtSetup() and your test in the entryPoint.
+- If you need any assertion method provided by the junit
+ library put it in the class MyTestCase.
+ There are already a bunch of them.
+- Run the module in development mode: mvn gwt:run
+ or lauch it from eclipse
+- See the output of the tests. If there is a failure
+ a stacktrace should be shown in the output.
+- Modify your test code and reload the application in your browser.
+- When your test was ready put it in your test class extending
+ GWTTestCase.
+
+
+
+
+