| 1 |
<?xml version="1.0" encoding="UTF-8"?> |
| 2 |
<phpunit backupGlobals="false" |
| 3 |
backupStaticAttributes="false" |
| 4 |
bootstrap="./phpunit.php" |
| 5 |
colors="true" |
| 6 |
convertErrorsToExceptions="true" |
| 7 |
convertNoticesToExceptions="true" |
| 8 |
convertWarningsToExceptions="true" |
| 9 |
processIsolation="false" |
| 10 |
stopOnFailure="false" |
| 11 |
syntaxCheck="true" |
| 12 |
verbose="true" |
| 13 |
> |
| 14 |
<testsuites> |
| 15 |
<testsuite name="flysystem/tests"> |
| 16 |
<directory suffix=".php">./tests/</directory> |
| 17 |
</testsuite> |
| 18 |
</testsuites> |
| 19 |
<filter> |
| 20 |
<whitelist> |
| 21 |
<directory suffix=".php">./src/</directory> |
| 22 |
</whitelist> |
| 23 |
</filter> |
| 24 |
<listeners> |
| 25 |
<listener class="Mockery\Adapter\Phpunit\TestListener" file="./vendor/mockery/mockery/library/Mockery/Adapter/Phpunit/TestListener.php"></listener> |
| 26 |
</listeners> |
| 27 |
<logging> |
| 28 |
<log type="coverage-text" target="php://stdout" showUncoveredFiles="true"/> |
| 29 |
<log type="coverage-html" target="coverage" showUncoveredFiles="true"/> |
| 30 |
<log type="coverage-clover" target="coverage.xml" showUncoveredFiles="true"/> |
| 31 |
</logging> |
| 32 |
</phpunit> |
| 33 |
|