php-kilo/phpunit.xml

24 lines
600 B
XML
Raw Normal View History

2019-11-19 13:48:12 -05:00
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
colors="true"
stopOnFailure="false"
beStrictAboutTestsThatDoNotTestAnything="true"
>
<filter>
<whitelist>
<directory suffix=".php">src</directory>
2019-11-19 17:01:45 -05:00
<exclude>
<file>src/constants.php</file>
</exclude>
2019-11-19 13:48:12 -05:00
</whitelist>
</filter>
<testsuites>
<testsuite name="PHPKilo">
2019-11-19 17:01:45 -05:00
<directory phpVersion="7.4.0" phpVersionOperator=">=">tests</directory>
2019-11-19 13:48:12 -05:00
</testsuite>
</testsuites>
<logging>
<log type="coverage-html" target="coverage"/>
2019-11-19 17:01:45 -05:00
<log type="coverage-text" target="php://stdout" showUncoveredFiles="true" />
2019-11-19 13:48:12 -05:00
</logging>
</phpunit>