-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
31 lines (31 loc) · 1.18 KB
/
phpunit.xml
File metadata and controls
31 lines (31 loc) · 1.18 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
~ Copyright (c) 2016 - 2020 Itspire.
~ This software is licensed under the BSD-3-Clause license. (see LICENSE.md for full license)
~ All Right Reserved.
-->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.1/phpunit.xsd"
backupGlobals="false" backupStaticProperties="false" bootstrap="src/test/php/bootstrap.php"
cacheDirectory=".phpunit.cache" colors="true" processIsolation="false" stopOnFailure="false">
<testsuites>
<testsuite name="Test Suite">
<directory>src/test/php</directory>
</testsuite>
</testsuites>
<coverage>
<report>
<html outputDirectory="build/coverage" lowUpperBound="35" highLowerBound="70" />
<text outputFile="php://stdout" showOnlySummary="true" />
</report>
</coverage>
<source>
<include>
<directory>src/main/php</directory>
</include>
<exclude>
<directory suffix="Interface.php">src/main/php</directory>
<directory>src/test/php</directory>
</exclude>
</source>
</phpunit>