pay/phpunit.xml.dist

22 lines
652 B
Plaintext
Raw Normal View History

2017-08-21 21:54:26 +08:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
2019-08-31 11:49:37 +08:00
stopOnFailure="false">
2017-08-21 21:54:26 +08:00
<testsuites>
<testsuite name="Application Test Suite">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">src/</directory>
</whitelist>
</filter>
</phpunit>