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

32 lines
778 B
ReStructuredText
Raw Normal View History

Running unit tests
==================
2013-03-21 05:51:46 +00:00
The tests are dependent on the pear packages HTTP_Request2 and Stream_Var.
Install them with: ::
$ pear install HTTP_Request2
$ pear install Stream_Var
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.