pay/phpunit.xml

18 lines
541 B
XML
Raw Normal View History

2017-08-21 21:54:26 +08:00
<?xml version="1.0" encoding="UTF-8"?>
2021-01-10 15:59:16 +08:00
<phpunit backupGlobals="false"
2017-08-21 21:54:26 +08:00
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
2020-10-14 23:31:31 +08:00
stopOnFailure="false"
2021-01-10 15:59:16 +08:00
cacheResult="false">
2020-10-14 23:31:31 +08:00
<testsuites>
2021-01-10 15:59:16 +08:00
<testsuite name="tests">
<directory suffix="Test.php">./tests</directory>
2020-10-14 23:31:31 +08:00
</testsuite>
</testsuites>
2017-08-21 21:54:26 +08:00
</phpunit>