31 lines
No EOL
871 B
XML
31 lines
No EOL
871 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
|
|
colors="true"
|
|
executionOrder="random"
|
|
failOnWarning="true"
|
|
failOnRisky="true"
|
|
failOnEmptyTestSuite="true"
|
|
beStrictAboutOutputDuringTests="true"
|
|
verbose="true"
|
|
bootstrap="vendor/autoload.php">
|
|
<php>
|
|
<ini name="display_errors" value="On" />
|
|
<ini name="error_reporting" value="-1" />
|
|
<ini name="xdebug.mode" value="coverage" />
|
|
</php>
|
|
<testsuites>
|
|
<testsuite name="Tests">
|
|
<directory>tests/</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<coverage>
|
|
<include>
|
|
<directory suffix=".php">src</directory>
|
|
</include>
|
|
<report>
|
|
<html outputDirectory="coverage" lowUpperBound="50" highLowerBound="90" />
|
|
</report>
|
|
</coverage>
|
|
</phpunit> |