aboutsummaryrefslogtreecommitdiff
path: root/doc/developers/running-unit-tests.rst
blob: f75cb81c4ce2d04dcd0deb1bf38b23c8098ec8cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Running unit tests
==================
The tests are dependent on the pear packages HTTP_Request2 and Stream_Var.

Install them with: ::
  $ pear install HTTP_Request2
  $ pear install Stream_Var

Go to the SemanticScuttle ``tests`` directory and run ``phpunit``::

  $ cd tests
  $ phpunit .

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
does not work nicely with database debugging.