19 lines
559 B
XML
19 lines
559 B
XML
<?xml version="1.0"?>
|
|
<!-- phpunit.xml.dist -->
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
|
|
<coverage processUncoveredFiles="true">
|
|
<include>
|
|
<directory suffix=".php">src</directory>
|
|
</include>
|
|
<report>
|
|
<clover outputFile="build/logs/clover.xml"/>
|
|
</report>
|
|
</coverage>
|
|
<testsuites>
|
|
<testsuite name="Yaml Expander Test Suite">
|
|
<directory>tests/phpunit</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<logging/>
|
|
</phpunit>
|