aboutsummaryrefslogtreecommitdiff
path: root/doc/developers
diff options
context:
space:
mode:
authorcweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>2010-02-07 16:49:18 +0000
committercweiske <cweiske@b3834d28-1941-0410-a4f8-b48e95affb8f>2010-02-07 16:49:18 +0000
commitdf7a5915700e689acc8b878a2830da3fa1b447b8 (patch)
treea59be82ca9e74d36ef58e5ed23df8a6dc24d0fed /doc/developers
parent14bde531ddf9f897e033e56ab38fb9cf6bbc9cf6 (diff)
downloadsemanticscuttle-df7a5915700e689acc8b878a2830da3fa1b447b8.tar.gz
semanticscuttle-df7a5915700e689acc8b878a2830da3fa1b447b8.tar.bz2
tell people how to run unit tests
git-svn-id: https://semanticscuttle.svn.sourceforge.net/svnroot/semanticscuttle/trunk@637 b3834d28-1941-0410-a4f8-b48e95affb8f
Diffstat (limited to 'doc/developers')
-rw-r--r--doc/developers/running-unit-tests21
1 files changed, 21 insertions, 0 deletions
diff --git a/doc/developers/running-unit-tests b/doc/developers/running-unit-tests
new file mode 100644
index 0000000..556055f
--- /dev/null
+++ b/doc/developers/running-unit-tests
@@ -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.