-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
phpunit.xml
30 lines (30 loc) · 1.26 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" backupGlobals="false" colors="true" processIsolation="false" testdox="true" stopOnFailure="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.1/phpunit.xsd" cacheDirectory=".phpunit.cache" backupStaticProperties="false" displayDetailsOnTestsThatTriggerWarnings="true" displayDetailsOnTestsThatTriggerDeprecations="true" requireCoverageMetadata="true">
<coverage>
<report>
<clover outputFile="tests/resources/clover.xml"/>
<html outputDirectory="tests/resources/coverage" lowUpperBound="35" highLowerBound="70"/>
</report>
</coverage>
<logging>
<testdoxText outputFile="tests/resources/testdox.txt"/>
</logging>
<testsuites>
<testsuite name="Unit Tests">
<directory suffix="Test.php">./tests/Unit</directory>
</testsuite>
</testsuites>
<php>
<env name="APP_ENV" value="local"/>
</php>
<source>
<include>
<directory suffix=".php">./src</directory>
</include>
<exclude>
<directory suffix=".php">./src/Data/Requests</directory>
<directory suffix=".php">./src/Data/Responses</directory>
<directory suffix=".php">./src/Data/Schemas</directory>
</exclude>
</source>
</phpunit>