passman/phpunit.xml
2016-10-16 19:57:20 +02:00

19 lines
723 B
XML

<phpunit bootstrap="tests/bootstrap.php" colors="true">
<testsuites>
<testsuite name="unit">
<directory>./tests/unit</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./lib/Db</directory>
<directory suffix=".php">./lib/Utility</directory>
<directory suffix=".php">./controller</directory>
<!--<file>/path/to/file</file>-->
<!--<exclude>-->
<!--<directory suffix=".php">/path/to/dir</directory>-->
<!--<file>/path/to/file</file>-->
<!--</exclude>-->
</whitelist>
</filter>
</phpunit>