silverstripe-installer/phpunit.xml.dist

33 lines
1008 B
Plaintext
Raw Normal View History

2016-08-30 04:35:44 +02:00
<!--
PHPUnit configuration for SilverStripe
Requires PHPUnit 3.5+
2016-08-30 04:35:44 +02:00
Usage:
- "phpunit": Runs all tests in all folders
- "phpunit framework/tests/": Run all tests of the framework module
- "phpunit framework/tests/filesystem": Run all filesystem tests within the framework module
- "phpunit framework/tests/filesystem/FolderTest.php": Run a single test
- "phpunit <dash><dash>coverage-html assets/": Generate coverage report (replace <dash> with "-", requires xdebug)
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
It is safe to remove this file for normal website operation.
-->
<phpunit bootstrap="framework/tests/bootstrap.php" colors="true">
<testsuite name="Default">
<directory>mysite/tests</directory>
<directory>cms/tests</directory>
<directory>framework/tests</directory>
</testsuite>
2016-08-30 04:35:44 +02:00
<groups>
<exclude>
<group>sanitychecks</group>
</exclude>
</groups>
2016-05-05 21:43:27 +02:00
</phpunit>