2022-04-27 11:30:43 +02:00

30 lines
1.0 KiB
XML

<phpunit bootstrap="vendor/autoload.php" colors="true">
<testsuites>
<testsuite name="formatters">
<directory prefix="" suffix="Test.php">tests</directory>
</testsuite>
</testsuites>
<logging>
<!--
<log type="coverage-html" target="build/logs/coverage" lowUpperBound="35"
highLowerBound="70"/>
-->
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
<exclude>
<file>FormatterInterface.php</file>
<file>OverrideRestructureInterface.php</file>
<file>RestructureInterface.php</file>
<file>ValidationInterface.php</file>
<file>Formatters/RenderDataInterface.php</file>
<file>StructuredData/ListDataInterface.php</file>
<file>StructuredData/RenderCellInterface.php</file>
<file>StructuredData/TableDataInterface.php</file>
</exclude>
</whitelist>
</filter>
</phpunit>