From 18989f97f1c4299f447b011c28961ca5c8310c13 Mon Sep 17 00:00:00 2001 From: Christian Weiske Date: Thu, 26 May 2011 08:20:04 +0200 Subject: documentation index --- doc/developers/running-unit-tests.rst | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 doc/developers/running-unit-tests.rst (limited to 'doc/developers/running-unit-tests.rst') 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. -- cgit v1.2.3-54-g00ecf