-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathphpunit.xml
41 lines (38 loc) · 1.55 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 bootstrap="./tests/TckImageResizerTest/Bootstrap.php"
backupGlobals="false"
backupStaticAttributes="false"
verbose="true">
<testsuites>
<testsuite name="controller">
<directory suffix="Test.php">./tests/TckImageResizerTest/Controller</directory>
</testsuite>
<testsuite name="service">
<directory suffix="Test.php">./tests/TckImageResizerTest/Service</directory>
</testsuite>
<testsuite name="util">
<directory suffix="Test.php">./tests/TckImageResizerTest/Util</directory>
</testsuite>
<testsuite name="view">
<directory suffix="Test.php">./tests/TckImageResizerTest/View</directory>
</testsuite>
</testsuites>
<coverage includeUncoveredFiles="true"
processUncoveredFiles="true"
ignoreDeprecatedCodeUnits="true"
disableCodeCoverageIgnore="true">
<include>
<directory suffix=".php">./src</directory>
</include>
<exclude>
<directory suffix=".php">./vendor</directory>
<directory suffix=".php">./tests</directory>
</exclude>
<report>
<clover outputFile="build/logs/clover.xml"/>
<crap4j outputFile="build/logs/crap4j.xml" threshold="50"/>
<html outputDirectory="build/html-coverage" lowUpperBound="35" highLowerBound="70"/>
<xml outputDirectory="build/logs/coverage/xml"/>
</report>
</coverage>
</phpunit>