mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
added2129f
Travis no longer relies on travis-support or special project structures. Instead, behat and silverstripe-serve are provided as dev dependencies and used within a normal composer install structure. tests/fixtures/Page.php should be copied into the project root before a test run. .travis.yml does this.
45 lines
1.2 KiB
XML
45 lines
1.2 KiB
XML
<!--
|
|
PHPUnit configuration for SilverStripe
|
|
|
|
Requires PHPUnit 3.5+
|
|
|
|
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)
|
|
|
|
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="tests/bootstrap.php" colors="true">
|
|
|
|
<testsuite name="Default">
|
|
<directory>tests</directory>
|
|
</testsuite>
|
|
|
|
<listeners>
|
|
<listener class="SilverStripe\Dev\TestListener" />
|
|
</listeners>
|
|
|
|
<groups>
|
|
<exclude>
|
|
<group>sanitychecks</group>
|
|
</exclude>
|
|
</groups>
|
|
|
|
<filter>
|
|
<whitelist addUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">.</directory>
|
|
<exclude>
|
|
<directory suffix=".php">tests/</directory>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
|
|
</phpunit>
|