mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 17:58:41 +00:00
32 lines
1.1 KiB
XML
32 lines
1.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit
|
|
bootstrap="Bootstrap.php"
|
|
colors="true"
|
|
stopOnError="true"
|
|
stopOnFailure="false"
|
|
stopOnIncomplete="false"
|
|
stopOnSkipped="false"
|
|
beStrictAboutTestsThatDoNotTestAnything="false"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="phpOMS">
|
|
<directory>./</directory>
|
|
<directory>./tests</directory>
|
|
<exclude>Module/ModuleManagerTest.php</exclude>
|
|
<exclude>./vendor</exclude>
|
|
<exclude>./Build</exclude>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<whitelist addUncoveredFilesFromWhitelist="false" processUncoveredFilesFromWhitelist="false">
|
|
<directory suffix=".php">.*</directory>
|
|
<exclude>
|
|
<directory suffix="tpl.php">../*</directory>
|
|
<directory suffix="lang.php">../*</directory>
|
|
<directory suffix="Test.php">../*</directory>
|
|
<directory>./Build</directory>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|