mirror of
https://github.com/Karaka-Management/phpOMS.git
synced 2026-01-11 17:58:41 +00:00
30 lines
1019 B
XML
30 lines
1019 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>vendor/*</directory>
|
|
<directory suffix="tpl.php">../*</directory>
|
|
<directory suffix="lang.php">../*</directory>
|
|
<directory suffix="Test.php">../*</directory>
|
|
<directory>../Build/*</directory>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|