2016-08-30 04:35:44 +02:00
|
|
|
<!--
|
2012-05-09 12:33:22 +02:00
|
|
|
PHPUnit configuration for SilverStripe
|
|
|
|
|
2017-11-07 13:58:43 +01:00
|
|
|
Requires PHPUnit 5+
|
2012-05-09 12:33:22 +02:00
|
|
|
|
2016-08-30 04:35:44 +02:00
|
|
|
Usage:
|
2019-02-02 09:22:56 +01:00
|
|
|
- "vendor/bin/phpunit": Runs all tests in all folders
|
|
|
|
- "vendor/bin/phpunit vendor/silverstripe/framework/tests/": Run all tests of the framework module
|
|
|
|
- "vendor/bin/phpunit vendor/silverstripe/framework/tests/filesystem": Run all filesystem tests within framework
|
|
|
|
- "vendor/bin/phpunit vendor/silverstripe/framework/tests/filesystem/FolderTest.php": Run a single test
|
|
|
|
- "vendor/bin/phpunit <dash><dash>coverage-html assets/": Generate coverage report (replace
|
|
|
|
<dash> with "-", requires xdebug or phpdbg)
|
2016-08-30 04:35:44 +02:00
|
|
|
|
2012-11-23 15:21:16 +01:00
|
|
|
More information:
|
|
|
|
- http://www.phpunit.de/manual/current/en/textui.html
|
|
|
|
- http://doc.silverstripe.org/framework/en/topics/testing/#configuration
|
2014-09-23 08:21:02 +02:00
|
|
|
|
|
|
|
It is safe to remove this file for normal website operation.
|
2010-10-15 03:20:45 +02:00
|
|
|
-->
|
2017-10-02 18:09:43 +02:00
|
|
|
<phpunit bootstrap="vendor/silverstripe/framework/tests/bootstrap.php" colors="true">
|
2019-02-02 09:22:56 +01:00
|
|
|
<testsuite name="Default">
|
|
|
|
<directory>mysite/tests</directory>
|
|
|
|
<directory>vendor/silverstripe/cms/tests/php</directory>
|
|
|
|
<directory>vendor/silverstripe/framework/tests/php</directory>
|
|
|
|
</testsuite>
|
2012-05-28 08:20:46 +02:00
|
|
|
|
2019-02-02 09:22:56 +01:00
|
|
|
<!-- framework only -->
|
|
|
|
<testsuite name="framework">
|
|
|
|
<directory>vendor/silverstripe/framework/tests/php/</directory>
|
|
|
|
</testsuite>
|
2016-08-30 04:35:44 +02:00
|
|
|
|
2019-02-02 09:22:56 +01:00
|
|
|
<!-- other core components -->
|
2017-04-04 06:02:44 +02:00
|
|
|
<testsuite name="core">
|
2019-02-02 09:22:56 +01:00
|
|
|
<directory>vendor/silverstripe/assets/tests/php/</directory>
|
2017-10-03 04:09:02 +02:00
|
|
|
<directory>vendor/silverstripe/versioned/tests/php/</directory>
|
2017-04-04 06:02:44 +02:00
|
|
|
</testsuite>
|
|
|
|
|
|
|
|
<!-- admin components -->
|
|
|
|
<testsuite name="admin">
|
2017-10-03 04:09:02 +02:00
|
|
|
<directory>vendor/silverstripe/admin/tests/php/</directory>
|
|
|
|
<directory>vendor/silverstripe/asset-admin/tests/php/</directory>
|
2019-02-02 09:22:56 +01:00
|
|
|
<directory>vendor/silverstripe/campaign-admin/tests/php/</directory>
|
|
|
|
<directory>vendor/silverstripe/cms/tests/</directory>
|
2017-10-03 04:09:02 +02:00
|
|
|
<directory>vendor/silverstripe/graphql/tests/</directory>
|
|
|
|
<directory>vendor/silverstripe/reports/tests/</directory>
|
2019-02-02 09:22:56 +01:00
|
|
|
<directory>vendor/silverstripe/siteconfig/tests/php/</directory>
|
2017-04-04 06:02:44 +02:00
|
|
|
</testsuite>
|
2016-05-05 21:43:27 +02:00
|
|
|
</phpunit>
|