summaryrefslogtreecommitdiffstatshomepage
path: root/doc/developers/running-unit-tests.rst
diff options
context:
space:
mode:
authorGravatar Christian Weiske2011-05-26 08:20:04 +0200
committerGravatar Christian Weiske2011-05-26 08:20:04 +0200
commit18989f97f1c4299f447b011c28961ca5c8310c13 (patch)
tree3ecf5ac1572f064d461209514d1568f216536839 /doc/developers/running-unit-tests.rst
parentb279ded75769818ae78ca11654ecef935d6cb956 (diff)
downloadscuttle-18989f97f1c4299f447b011c28961ca5c8310c13.tar.gz
scuttle-18989f97f1c4299f447b011c28961ca5c8310c13.zip
documentation index
Diffstat (limited to 'doc/developers/running-unit-tests.rst')
-rw-r--r--doc/developers/running-unit-tests.rst21
1 files changed, 21 insertions, 0 deletions
diff --git a/doc/developers/running-unit-tests.rst b/doc/developers/running-unit-tests.rst
new file mode 100644
index 0000000..556055f
--- /dev/null
+++ b/doc/developers/running-unit-tests.rst
@@ -0,0 +1,21 @@
+Running unit tests
+==================
+
+Go to the SemanticScuttle main directory and run
+ $ php tests/AllTests.php
+or
+ $ phpunit tests/AllTests.php
+also remember the --verbose parameter to PHPUnit.
+
+If you want to run a specific test class only:
+ $ phpunit tests/BookmarksTest.php
+
+If you need to test one method only:
+ $ phpunit --filter BookmarkTest::testUnificationOfBookmarks tests/BookmarkTest.php
+
+
+Caveats
+-------
+Having debugging enabled and database driver "mysql4" activated
+will lead to failing tests because of FOUND_ROWS() usage, which
+does not work nicely with database debugging.