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