mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-12 10:18:39 +00:00
29 lines
975 B
XML
29 lines
975 B
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>
|
|
<exclude>Module/ModuleManagerTest.php</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>
|