25 lines
852 B
Plaintext
25 lines
852 B
Plaintext
|
<phpunit backupGlobals="false"
|
||
|
backupStaticAttributes="false"
|
||
|
bootstrap="./tests/bootstrap.php"
|
||
|
colors="true"
|
||
|
convertErrorsToExceptions="true"
|
||
|
convertNoticesToExceptions="true"
|
||
|
convertWarningsToExceptions="true"
|
||
|
processIsolation="false"
|
||
|
stopOnFailure="false"
|
||
|
syntaxCheck="false">
|
||
|
<testsuites>
|
||
|
<testsuite name="PhpOffice Common Test Suite">
|
||
|
<directory>./tests/Common</directory>
|
||
|
</testsuite>
|
||
|
</testsuites>
|
||
|
<filter>
|
||
|
<whitelist>
|
||
|
<directory suffix=".php">./src</directory>
|
||
|
</whitelist>
|
||
|
</filter>
|
||
|
<logging>
|
||
|
<log type="coverage-html" target="./build/coverage" charset="UTF-8" highlight="true" />
|
||
|
<log type="coverage-clover" target="./build/logs/clover.xml" />
|
||
|
</logging>
|
||
|
</phpunit>
|