-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
executable file
·22 lines (22 loc) · 1.05 KB
/
phpunit.xml
File metadata and controls
executable file
·22 lines (22 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd" bootstrap="./vendor/autoload.php" colors="true" backupGlobals="false" backupStaticAttributes="false" verbose="true">
<testsuites>
<testsuite name="Adelarcubs OFXParser tests">
<directory>./tests</directory>
</testsuite>
</testsuites>
<coverage>
<report>
<clover outputFile="build/phpunit/clover.xml"/>
<cobertura outputFile="build/phpunit/cobertura.xml"/>
<crap4j outputFile="build/phpunit/crap4j.xml" threshold="50"/>
<html outputDirectory="build/phpunit/html-coverage" lowUpperBound="50" highLowerBound="90"/>
<php outputFile="build/phpunit/coverage.php"/>
<text outputFile="build/phpunit/coverage.txt" showUncoveredFiles="false" showOnlySummary="true"/>
<xml outputDirectory="build/phpunit/xml-coverage"/>
</report>
<include>
<directory suffix=".php">src</directory>
</include>
</coverage>
</phpunit>