-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathphpunit.local.xml
More file actions
22 lines (22 loc) · 694 Bytes
/
phpunit.local.xml
File metadata and controls
22 lines (22 loc) · 694 Bytes
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"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/12.4/phpunit.xsd"
bootstrap="./vendor/autoload.php"
colors="true"
cacheDirectory=".phpunit.cache">
<coverage includeUncoveredFiles="true">
<report>
<html outputDirectory="./test-reports/report" lowUpperBound="35" highLowerBound="70"/>
</report>
</coverage>
<testsuite name="SoapPlus">
<directory>./tests</directory>
<exclude>./tests/misc</exclude>
</testsuite>
<logging/>
<source>
<include>
<directory suffix=".php">./src</directory>
</include>
</source>
</phpunit>