forked from ravage84/SwissPaymentSlip
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphpunit-html-coverage.xml
24 lines (24 loc) · 988 Bytes
/
phpunit-html-coverage.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.0/phpunit.xsd"
forceCoversAnnotation="false"
verbose="false" bootstrap="./tests/bootstrap.php">
<testsuites>
<testsuite name="All SwissPaymentSlip tests">
<file>./tests/Exception/DisabledDataExceptionTest.php</file>
<file>./tests/PaymentSlipDataTest.php</file>
<file>./tests/OrangePaymentSlipDataTest.php</file>
<file>./tests/PaymentSlipTest.php</file>
<file>./tests/OrangePaymentSlipTest.php</file>
<file>./tests/RedPaymentSlipTest.php</file>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src/</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="report/coverage/" charset="UTF-8"/>
</logging>
</phpunit>