-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
32 lines (29 loc) · 1007 Bytes
/
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
30
31
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php"
convertErrorsToExceptions="true"
verbose="true"
colors="true">
<testsuites>
<testsuite name="SeedApp">
<directory>tests/SeedApp</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src/</directory>
</whitelist>
</filter>
<php>
<ini name="date.timezone" value="UTC"/>
<ini name="display_errors" value="On" />
<ini name="display_startup_errors" value="On" />
</php>
<logging>
<log type="coverage-html" target="results/coverage"
lowUpperBound="35" highLowerBound="70"/>
<log type="coverage-clover" target="results/phpunit/clover.xml"/>
<log type="junit" target="results/phpunit/junit.xml"/>
<log type="tap" target="results/phpunit/tap.txt"/>
<log type="testdox-html" target="results/phpunit/testdox.html"/>
</logging>
</phpunit>