forked from PHPSP/liga-solidaria-storage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
27 lines (24 loc) · 1 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
<phpunit
colors="true"
verbose="true"
bootstrap="bootstrap.php">
<testsuites>
<testsuite name="Liga Solidaria Storage - Test Suite">
<directory>tests/LigaSolidariaStorage</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>src/LigaSolidariaStorage</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="tests/_reports/report" charset="UTF-8" highlight="false" lowUpperBound="35" highLowerBound="70"/>
<log type="coverage-clover" target="tests/_reports/coverage.xml"/>
<log type="coverage-php" target="tests/_reports/coverage.serialized"/>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/>
<log type="json" target="tests/_reports/logfile.json"/>
<log type="tap" target="tests/_reports/logfile.tap"/>
<log type="junit" target="tests/_reports/logfile.xml" logIncompleteSkipped="false"/>
</logging>
</phpunit>