-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
41 lines (35 loc) · 1.21 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="true"
stopOnFailure="false"
bootstrap="./tests/bootstrap.php"
backupGlobals="false"
backupStaticAttributes="false"
>
<testsuites>
<testsuite name="tests">
<directory>./tests/</directory>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory>./src/</directory>
<exclude>
<directory>./src/core/connect</directory>
</exclude>
</whitelist>
</filter>
<php>
<server name='HTTP_HOST' value='localhost' />
<server name='REQUEST_URI' value='/mock/123456789' />
<server name='REQUEST_METHOD' value='get' />
<server name='HTTP_AUTHORIZATION' value='' />
</php>
<logging>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="true"/>
<log type="coverage-html" target="tests/build/coverage" lowUpperBound="35" highLowerBound="70"/>
</logging>
</phpunit>