2019-01-13 03:06:53 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<phpunit backupGlobals="false"
|
|
|
|
backupStaticAttributes="false"
|
|
|
|
bootstrap="./bootstrap.php"
|
|
|
|
colors="true"
|
|
|
|
convertErrorsToExceptions="true"
|
|
|
|
convertNoticesToExceptions="true"
|
|
|
|
convertWarningsToExceptions="true"
|
|
|
|
processIsolation="false"
|
|
|
|
stopOnFailure="false">
|
|
|
|
<testsuites>
|
|
|
|
<testsuite name="Tests">
|
|
|
|
<directory suffix="Test.php">./src/database/tests</directory>
|
2019-04-24 17:45:04 +08:00
|
|
|
<directory suffix="Test.php">./src/elasticsearch/tests</directory>
|
2019-02-06 02:24:15 +08:00
|
|
|
<directory suffix="Test.php">./src/event/tests</directory>
|
2019-04-10 16:08:36 +08:00
|
|
|
<directory suffix="Test.php">./src/logger/tests</directory>
|
2019-01-13 03:06:53 +08:00
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
|
|
|
<filter>
|
|
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
2019-01-21 20:59:10 +08:00
|
|
|
<directory suffix=".php">./src/database</directory>
|
2019-01-13 03:06:53 +08:00
|
|
|
</whitelist>
|
|
|
|
</filter>
|
|
|
|
</phpunit>
|