summaryrefslogtreecommitdiff
path: root/doc/developers/running-unit-tests.rst
blob: 556055f7696fd30df9c1599e70d02c631c2d8461 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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.