-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphpunit.xml
25 lines (25 loc) · 893 Bytes
/
phpunit.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
executionOrder="random"
resolveDependencies="true"
beStrictAboutTestsThatDoNotTestAnything="false"
colors="true"
bootstrap="vendor/autoload.php">
<testsuites>
<testsuite name="AllUnitTests">
<directory>./test/Unit/</directory>
<directory>./test/Integration/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-text" target="php://stdout"/>
<log type="coverage-xml" target="./tmp/phpunit/coverage-xml"/>
<log type="coverage-clover" target="./tmp/phpunit/clover.xml"/>
<log type="junit" target="./tmp/phpunit/junit.xml"/>
</logging>
</phpunit>