-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit.xml.dist
28 lines (28 loc) · 1.52 KB
/
phpunit.xml.dist
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
<?xml version="1.0"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/latest/phpunit.xsd" bootstrap="tests/bootstrap.php" cacheResult="true" colors="true" convertErrorsToExceptions="true" processIsolation="false" stopOnError="false" stopOnFailure="false" stopOnIncomplete="false" stopOnRisky="false" stopOnSkipped="false" verbose="true">
<testsuites>
<testsuite name="all">
<directory phpVersion="7.2.0" phpVersionOperator=">=" suffix="Test.php">tests</directory>
</testsuite>
<testsuite name="integration">
<directory phpVersion="7.2.0" phpVersionOperator=">=" suffix="Test.php">tests/Integration</directory>
</testsuite>
<testsuite name="unit">
<directory phpVersion="7.2.0" phpVersionOperator=">=" suffix="Test.php">tests/Unit</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
</whitelist>
</filter>
<logging>
<log highLowerBound="70" lowUpperBound="35" target="tests/report/report" type="coverage-html"/>
<log target="tests/report/clover.xml" type="coverage-clover"/>
<log target="tests/report/coverage.cov" type="coverage-php"/>
<log target="tests/report/coverage.txt" type="coverage-text"/>
<log target="tests/report/logfile.xml" type="junit"/>
<log target="tests/report/testdox.html" type="testdox-html"/>
<log target="tests/report/testdox.txt" type="testdox-text"/>
</logging>
</phpunit>