mirror of
https://github.com/gtbu/Typesetter-5.3-p8.git
synced 2024-11-10 17:34:02 +01:00
45 lines
1.1 KiB
XML
45 lines
1.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit
|
|
processIsolation = "false"
|
|
stopOnFailure = "true"
|
|
stopOnError = "true"
|
|
stopOnIncomplete = "true"
|
|
stopOnSkipped = "false"
|
|
bootstrap = "phpunit/bootstrap.php"
|
|
verbose = "true"
|
|
>
|
|
|
|
<testsuites>
|
|
|
|
<testsuite name="Tools">
|
|
<directory>phpunit/Tool</directory>
|
|
<directory>phpunit/Include</directory>
|
|
<directory>phpunit/Settings</directory>
|
|
</testsuite>
|
|
|
|
<testsuite name="Installation">
|
|
<directory>phpunit/Install</directory>
|
|
<directory>phpunit/Admin</directory>
|
|
</testsuite>
|
|
|
|
<testsuite name="Admin">
|
|
<directory>phpunit/Admin</directory>
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
<logging>
|
|
<log type="testdox-text" target="php://stdout"/>
|
|
<log type="coverage-clover" target="x_coverage/unit-tests.clover"/>
|
|
</logging>
|
|
|
|
|
|
<filter>
|
|
<whitelist>
|
|
<directory suffix=".php">./include</directory>
|
|
<exclude>
|
|
<directory suffix=".php">./include/thirdparty</directory>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|