-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathphpunit.xml.dist
29 lines (29 loc) · 1.06 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
29
<?xml version="1.0" encoding="UTF-8" ?>
<phpunit bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutTestSize="true"
beStrictAboutChangesToGlobalState="true"
verbose="true"
>
<testsuites>
<testsuite name="Tests">
<directory>./tests</directory>
</testsuite>
</testsuites>
<logging>
<log type="coverage-html" target="reports/coverage"/>
<log type="coverage-clover" target="reports/logs/clover.xml"/>
<log type="coverage-crap4j" target="reports/logs/crap4j.xml"/>
<log type="junit" target="reports/logs/junit.xml" logIncompleteSkipped="false"/>
</logging>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">BambooHR</directory>
</whitelist>
</filter>
</phpunit>