blob: 8b0fa0de53e13ec122737c6efa5786cfb8b678a6 (
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
|
Running unit tests
==================
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.
|