passman/phpunit.xml

22 lines
787 B
XML
Raw Normal View History

2016-09-09 23:36:35 +08:00
<phpunit bootstrap="tests/bootstrap.php" colors="true">
<testsuites>
<testsuite name="unit">
<directory>./tests/unit</directory>
2017-04-17 19:07:45 +08:00
<exclude>./tests/unit/lib/Db</exclude>
2016-09-09 23:36:35 +08:00
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./lib/Utility</directory>
<directory suffix=".php">./lib/BackgroundJob</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>
2017-04-17 19:07:45 +08:00
</filter>
2016-09-09 23:36:35 +08:00
</phpunit>