mirror of
https://github.com/jdel/sspks.git
synced 2026-01-12 15:43:50 +00:00
30 lines
884 B
XML
30 lines
884 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<phpunit
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd"
|
|
bootstrap="./vendor/autoload.php"
|
|
verbose="true">
|
|
|
|
<filter>
|
|
<whitelist processUncoveredFilesFromWhitelist="true">
|
|
<directory suffix=".php">./lib</directory>
|
|
<exclude>
|
|
<directory suffix=".php">./vendor</directory>
|
|
</exclude>
|
|
</whitelist>
|
|
</filter>
|
|
|
|
<logging>
|
|
<log type="coverage-clover" target="./clover.xml"/>
|
|
<log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/>
|
|
</logging>
|
|
|
|
<testsuites>
|
|
<testsuite name="SSpkS Testsuite">
|
|
<directory>./tests</directory>
|
|
<exclude>./vendor</exclude>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
</phpunit>
|