mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
6cfeb7f07e
Note: Retains CMS build
17 lines
432 B
XML
17 lines
432 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--
|
|
Standard module phpunit configuration.
|
|
Requires PHPUnit ^5.7
|
|
-->
|
|
<phpunit bootstrap="tests/bootstrap.php" colors="true">
|
|
<testsuite name="Default">
|
|
<directory>tests/php</directory>
|
|
</testsuite>
|
|
<testsuite name="framework">
|
|
<directory>tests/php</directory>
|
|
</testsuite>
|
|
<testsuite name="cms">
|
|
<directory>cms/tests</directory>
|
|
</testsuite>
|
|
</phpunit>
|