-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.xml
41 lines (41 loc) · 1.67 KB
/
phpunit.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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.1/phpunit.xsd"
backupGlobals="false"
cacheResult="false">
<testsuites>
<testsuite name="read_write">
<file>testing/ReadWriteTest.php</file>
</testsuite>
<testsuite name="write">
<file>testing/WriteTest.php</file>
</testsuite>
</testsuites>
<coverage
pathCoverage="false">
<report>
<clover outputFile="testing/coverage/clover.xml"/>
<cobertura outputFile="testing/coverage/cobertura.xml"/>
<crap4j outputFile="testing/coverage/crap4j.xml" threshold="50"/>
<html outputDirectory="testing/coverage/html-coverage" lowUpperBound="50" highLowerBound="90"/>
<php outputFile="testing/coverage/coverage.php"/>
<text outputFile="testing/coverage/coverage.txt" showUncoveredFiles="false" showOnlySummary="true"/>
<xml outputDirectory="testing/coverage/xml-coverage"/>
</report>
</coverage>
<source>
<include>
<directory suffix=".php">source</directory>
</include>
<exclude>
<file>source/TraitUserInterfaceLogic.php</file>
<file>source/ClassElectronicInvoiceUserInterface.php</file>
</exclude>
</source>
<logging>
<junit outputFile="testing/logs/junit.xml"/>
<teamcity outputFile="testing/logs/teamcity.txt"/>
<testdoxHtml outputFile="testing/logs/testdox.html"/>
<testdoxText outputFile="testing/logs/testdox.txt"/>
</logging>
</phpunit>