mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
28 lines
857 B
XML
28 lines
857 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
Standard module phpunit configuration.
|
|
Requires PHPUnit ^9
|
|
-->
|
|
<phpunit bootstrap="tests/bootstrap.php" colors="true">
|
|
<testsuites>
|
|
<testsuite name="Default">
|
|
<directory>tests/php</directory>
|
|
</testsuite>
|
|
<testsuite name="framework">
|
|
<directory>tests/php</directory>
|
|
</testsuite>
|
|
<testsuite name="cms">
|
|
<directory>vendor/silverstripe/cms/tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<whitelist addUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">.</directory>
|
|
<exclude>
|
|
<directory suffix=".php">tests/</directory>
|
|
<directory suffix=".php">thirdparty/</directory>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|