19 lines
511 B
XML
19 lines
511 B
XML
<phpunit backupGlobals="false"
|
|
bootstrap="tests/bootstrap.php"
|
|
colors="true"
|
|
beStrictAboutChangesToGlobalState="true"
|
|
beStrictAboutOutputDuringTests="true"
|
|
beStrictAboutTestsThatDoNotTestAnything="true"
|
|
>
|
|
<testsuites>
|
|
<testsuite name="all">
|
|
<directory>tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<filter>
|
|
<whitelist>
|
|
<directory suffix=".php">src/</directory>
|
|
</whitelist>
|
|
</filter>
|
|
</phpunit>
|