php-kilo/phpunit.xml

22 lines
747 B
XML
Raw Permalink Normal View History

2019-11-19 13:48:12 -05:00
<?xml version="1.0" encoding="UTF-8"?>
2020-12-04 11:18:21 -05:00
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" stopOnFailure="false" beStrictAboutTestsThatDoNotTestAnything="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<directory suffix=".php">src</directory>
</include>
<exclude>
<file>src/constants.php</file>
</exclude>
<report>
<html outputDirectory="coverage"/>
<text outputFile="php://stdout" showUncoveredFiles="true"/>
</report>
</coverage>
<testsuites>
<testsuite name="PHPKilo">
2021-04-14 14:40:35 -04:00
<directory phpVersion="8.0.0" phpVersionOperator="&gt;=">tests</directory>
2020-12-04 11:18:21 -05:00
</testsuite>
</testsuites>
<logging/>
</phpunit>