forked from silknow/skosmos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
20 lines (20 loc) · 708 Bytes
/
phpunit.xml
File metadata and controls
20 lines (20 loc) · 708 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<phpunit colors="true" bootstrap="tests/bootstrap.php" processIsolation="true">
<logging>
<log type="coverage-html" target="./report" charset="UTF-8" highlight="false" lowUpperBound="35" highLowerBound="70"/>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
<testsuites>
<testsuite name="tests">
<directory suffix=".php">tests</directory>
</testsuite>
</testsuites>
<filter>
<blacklist>
<directory>vendor</directory>
</blacklist>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">model</directory>
<directory suffix=".php">model/sparql</directory>
</whitelist>
</filter>
</phpunit>