-
Notifications
You must be signed in to change notification settings - Fork 3
/
phpunit.xml.dist
25 lines (22 loc) · 971 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true" bootstrap="vendor/autoload.php">
<testsuites>
<testsuite name="Cekurte Environment">
<directory>./test/Filter</directory>
<directory>./test/Resource</directory>
<file phpVersion="5.6" phpVersionOperator=">=">./test/EnvFunctionTest.php</file>
<file>./test/EnvironmentTest.php</file>
<file>./test/EnvTest.php</file>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">./src/</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="true"/>
<log type="coverage-html" target="build/coverage" title="PHP Coverage" charset="UTF-8" yui="true" highlight="true" lowUpperBound="35" highLowerBound="70"/>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
</phpunit>