SemanticScuttle/doc/developers/running-unit-tests.rst

27 lines
621 B
ReStructuredText
Raw Normal View History

Running unit tests
==================
2011-05-26 19:44:29 +00:00
Go to the SemanticScuttle ``tests`` directory and run ``phpunit``::
2011-05-26 19:44:29 +00:00
$ cd tests
$ phpunit .
2011-05-26 19:44:29 +00:00
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
-------
2011-05-26 19:44:29 +00:00
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.