Files
icehrm/phpunit.xml

34 lines
1.1 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="./test/bootstrap.php"
backupGlobals="false"
backupStaticAttributes="false"
strict="true"
verbose="true">
<testsuites>
<testsuite name="icehrm">
<directory suffix="Test.php">./test/</directory>
</testsuite>
</testsuites>
<logging>
<log type="coverage-html" target="build/coverage"/>
<log type="coverage-clover" target="build/logs/clover.xml"/>
<log type="coverage-crap4j" target="build/logs/crap4j.xml"/>
<log type="junit" target="build/logs/junit.xml" logIncompleteSkipped="false"/>
</logging>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./build/app</directory>
<exclude>
<directory suffix=".php">./composer</directory>
<directory suffix=".php">./lib</directory>
<directory suffix=".php">./lib/Mail</directory>
<directory suffix=".php">./adodb512</directory>
<directory suffix=".php">./js</directory>
</exclude>
</whitelist>
</filter>
</phpunit>