matrix-php-sdk/phpunit.xml.dist

29 lines
950 B
Plaintext
Raw Normal View History

2013-08-07 17:33:05 +00:00
<?xml version="1.0" encoding="UTF-8"?>
2014-10-07 09:02:20 +00:00
<phpunit bootstrap="vendor/autoload.php"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
verbose="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
2013-08-07 17:33:05 +00:00
<testsuites>
2018-11-27 11:01:37 +00:00
<testsuite name="Aryess Test Suite">
2014-10-07 09:02:20 +00:00
<directory>tests</directory>
2013-08-07 17:33:05 +00:00
</testsuite>
</testsuites>
<filter>
<whitelist>
2014-10-07 09:02:20 +00:00
<directory suffix=".php">src/</directory>
2013-08-07 17:33:05 +00:00
</whitelist>
</filter>
2014-10-07 09:02:20 +00:00
<logging>
<log type="junit" target="build/report.junit.xml"/>
2018-11-28 12:22:55 +00:00
<log type="coverage-html" target="build/coverage"/>
2014-10-07 09:02:20 +00:00
<log type="coverage-text" target="build/coverage.txt"/>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
2013-08-07 17:33:05 +00:00
</phpunit>