forked from teamneusta/php-cli-hosts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
40 lines (39 loc) · 1.47 KB
/
phpunit.xml.dist
File metadata and controls
40 lines (39 loc) · 1.47 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ This file is part of the teamneusta/hosts project.
~ Copyright (c) 2017 neusta GmbH | Ein team neusta Unternehmen
~ For the full copyright and license information, please view the LICENSE file that was distributed with this source code.
~ @license http://www.opensource.org/licenses/mit-license.html MIT License
~
-->
<phpunit backupGlobals="true"
bootstrap="./vendor/autoload.php"
colors="true"
beStrictAboutOutputDuringTests="true"
verbose="true">
<testsuites>
<testsuite name="Host-Project">
<directory suffix="Test.php">./tests</directory>
<exclude>./src/Command/InitCommand.php</exclude>
</testsuite>
<testsuite name="Host-Build-Tools">
<directory suffix="Test.php">./build/tests</directory>
</testsuite>
</testsuites>
<coverage includeUncoveredFiles="true"
processUncoveredFiles="true"
pathCoverage="false"
ignoreDeprecatedCodeUnits="true">
<include>
<directory suffix=".php">src</directory>
</include>
<report>
<clover outputFile="./reports/coverage.xml"/>
<html outputDirectory="./reports/report" lowUpperBound="35" highLowerBound="70"/>
</report>
</coverage>
<logging>
<junit outputFile="./reports/logfile.xml"/>
<testdoxHtml outputFile="./reports/testdox.html"/>
</logging>
</phpunit>