mirror of
https://github.com/adlawson/php-vfs.git
synced 2024-11-10 15:20:59 +00:00
32 lines
858 B
XML
32 lines
858 B
XML
<phpunit bootstrap="./vendor/autoload.php"
|
|
colors="true"
|
|
stopOnError="true"
|
|
stopOnFailure="true">
|
|
|
|
<!-- Test suites -->
|
|
<testsuites>
|
|
<!-- <testsuite name="acceptance">
|
|
<directory suffix="AcceptanceTest.php">test/acceptance</directory>
|
|
</testsuite> -->
|
|
<testsuite name="functional">
|
|
<directory suffix="FunctionalTest.php">test/functional</directory>
|
|
</testsuite>
|
|
<testsuite name="unit">
|
|
<directory suffix="Test.php">test/unit</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<!-- Coverage filter -->
|
|
<filter>
|
|
<whitelist>
|
|
<directory>src</directory>
|
|
</whitelist>
|
|
</filter>
|
|
|
|
<!-- Listeners -->
|
|
<listeners>
|
|
<listener class="Mockery\Adapter\Phpunit\TestListener"/>
|
|
</listeners>
|
|
|
|
</phpunit>
|