mirror of
https://github.com/standardebooks/web.git
synced 2025-07-09 16:20:27 -04:00
36 lines
904 B
XML
36 lines
904 B
XML
<phpunit
|
|
bootstrap="tests/bootstrap.php"
|
|
colors="true"
|
|
backupGlobals="false"
|
|
backupStaticAttributes="false"
|
|
beStrictAboutChangesToGlobalState="true"
|
|
beStrictAboutOutputDuringTests="true"
|
|
beStrictAboutTestsThatDoNotTestAnything="true"
|
|
beStrictAboutTodoAnnotatedTests="true"
|
|
failOnRisky="true"
|
|
failOnWarning="true"
|
|
convertErrorsToExceptions="true"
|
|
convertNoticesToExceptions="true"
|
|
convertWarningsToExceptions="true"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="Test suite">
|
|
<directory>./tests/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<whitelist>
|
|
<directory suffix=".php">./src</directory>
|
|
</whitelist>
|
|
</filter>
|
|
<logging>
|
|
<log
|
|
type="coverage-text"
|
|
target="php://stdout"
|
|
showUncoveredFiles="true"
|
|
showOnlySummary="true"
|
|
/>
|
|
<log type="coverage-html" target="build/coverage"/>
|
|
<log type="coverage-clover" target="build/logs/clover.xml"/>
|
|
</logging>
|
|
</phpunit>
|