<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
verbose="true"
colors="true"
bootstrap="autoloader.php"
cacheResult="false">
<coverage>
<include>
<directory suffix=".php">SKien/SVGCreator</directory>
</include>
<report>
<clover outputFile="./clover.xml"/>
<html outputDirectory="Tests/SKien/SVGCreator/coverage"/>
<text outputFile="php://stdout" showUncoveredFiles="true" showOnlySummary="true"/>
<!-- <text outputFile="./coverage.txt" showUncoveredFiles="true" showOnlySummary="true"/> -->
</report>
</coverage>
<testsuites>
<testsuite name="SVGCreator">
<directory>Tests/SKien/SVGCreator</directory>
</testsuite>
</testsuites>
<logging/>
<php>
<server name="PHP_SELF" value="test.php"/>
<server name="QUERY_STRING" value="action=edit"/>
</php>
</phpunit>
|