-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.dist.xml
34 lines (34 loc) · 1.22 KB
/
phpunit.dist.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
26
27
28
29
30
31
32
33
34
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/6.3/phpunit.xsd"
bootstrap="Test/bootstrap.php"
cacheTokens="false"
printerClass="LimeDeck\Testing\Printer"
colors="true"
verbose="false">
<php>
<env name="DB_HOST" value="" />
<env name="DB_NAME" value="" />
<env name="DB_PORT" value="-1" />
<env name="DB_USER" value="" />
<env name="DB_PASS" value="" />
</php>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">Source</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="Test/Output/Coverage"/>
<log type="coverage-clover" target="Test/Output/coverage.xml" showUncoveredFiles="true"/>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="true"/>
</logging>
<testsuites>
<testsuite name="AcceptanceTest">
<directory>Test/AcceptanceTest</directory>
</testsuite>
<testsuite name="UnitTest">
<directory>Test/UnitTest</directory>
</testsuite>
</testsuites>
</phpunit>