diff options
author | Christian Weiske <cweiske@cweiske.de> | 2011-05-26 21:44:29 +0200 |
---|---|---|
committer | Christian Weiske <cweiske@cweiske.de> | 2011-05-26 21:44:29 +0200 |
commit | 17dcda30e78c13f1ca91c1f031ecd4d6445ef6a7 (patch) | |
tree | 3c83c5034a4a232a165ed0d6385da66ec06b8b6a /doc/developers/running-unit-tests.rst | |
parent | b55b3a6c670c5af99671c2d6c77cbf0d15954728 (diff) | |
download | semanticscuttle-17dcda30e78c13f1ca91c1f031ecd4d6445ef6a7.tar.gz semanticscuttle-17dcda30e78c13f1ca91c1f031ecd4d6445ef6a7.tar.bz2 |
more documentation rST fixes
Diffstat (limited to 'doc/developers/running-unit-tests.rst')
-rw-r--r-- | doc/developers/running-unit-tests.rst | 25 |
1 files changed, 15 insertions, 10 deletions
diff --git a/doc/developers/running-unit-tests.rst b/doc/developers/running-unit-tests.rst index 556055f..8b0fa0d 100644 --- a/doc/developers/running-unit-tests.rst +++ b/doc/developers/running-unit-tests.rst @@ -1,21 +1,26 @@ 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. +Go to the SemanticScuttle ``tests`` directory and run ``phpunit``:: -If you want to run a specific test class only: - $ phpunit tests/BookmarksTest.php + $ cd tests + $ phpunit . -If you need to test one method only: +also remember the ``--verbose`` parameter to PHPUnit. + +If you want to run a specific test class only: :: + + $ cd tests + $ phpunit BookmarksTest.php + +If you need to test one method only: :: + + $ cd tests $ 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 +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. |