28 lines
898 B
XML
28 lines
898 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
colors="true"
|
|
beStrictAboutTestsThatDoNotTestAnything="true"
|
|
beStrictAboutOutputDuringTests="true"
|
|
beStrictAboutChangesToGlobalState="true"
|
|
failOnWarning="true"
|
|
cacheResult="false"
|
|
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd">
|
|
<php>
|
|
<!-- Set error reporting to E_ALL. -->
|
|
<ini name="error_reporting" value="32767"/>
|
|
<!-- Do not limit the amount of memory tests take to run. -->
|
|
<ini name="memory_limit" value="-1"/>
|
|
</php>
|
|
<testsuites>
|
|
<testsuite name="PHPStan tests">
|
|
<directory>tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<!-- Settings for coverage reports. -->
|
|
<source>
|
|
<include>
|
|
<directory>Rules</directory>
|
|
</include>
|
|
</source>
|
|
</phpunit>
|