2017-04-04 17:30:02 +12:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2016-09-12 17:42:05 +12:00
|
|
|
<!--
|
2017-04-04 17:30:02 +12:00
|
|
|
Standard module phpunit configuration.
|
|
|
|
Requires PHPUnit ^5.7
|
2016-09-12 17:42:05 +12:00
|
|
|
-->
|
2017-05-22 21:02:34 +12:00
|
|
|
<phpunit bootstrap="tests/bootstrap.php" colors="true">
|
2016-09-12 17:42:05 +12:00
|
|
|
<testsuite name="Default">
|
2016-10-14 14:30:05 +13:00
|
|
|
<directory>tests/php</directory>
|
2017-04-04 17:30:02 +12:00
|
|
|
</testsuite>
|
|
|
|
<testsuite name="framework">
|
|
|
|
<directory>tests/php</directory>
|
|
|
|
</testsuite>
|
|
|
|
<testsuite name="cms">
|
|
|
|
<directory>cms/tests</directory>
|
|
|
|
</testsuite>
|
2017-07-16 13:56:12 +12:00
|
|
|
<filter>
|
|
|
|
<whitelist addUncoveredFilesFromWhitelist="true">
|
|
|
|
<directory suffix=".php">.</directory>
|
|
|
|
<exclude>
|
|
|
|
<directory suffix=".php">tests/</directory>
|
2017-07-18 22:21:45 +12:00
|
|
|
<directory suffix=".php">thirdparty/</directory>
|
2017-07-16 13:56:12 +12:00
|
|
|
</exclude>
|
|
|
|
</whitelist>
|
|
|
|
</filter>
|
2016-09-12 17:42:05 +12:00
|
|
|
</phpunit>
|