forked from nilportugues/php-api-problems
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
Latest commit
49 lines (42 loc) · 1.4 KB
/
Copy pathphpunit.xml
File metadata and controls
49 lines (42 loc) · 1.4 KB
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
42
43
44
45
46
47
48
49
<?xml version="1.0" encoding="UTF-8"?>
<phpunitcacheTokens="false"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
syntaxCheck="true"
bootstrap="vendor/autoload.php"
verbose="true">
<php>
<ininame="intl.default_locale"value="en_US.UTF-8" />
<ininame="intl.error_level"value="0" />
<ininame="memory_limit"value="-1" />
<ininame="max_execution_time"value="-1"/>
<ininame="date.timezone"value="Europe/Madrid" />
<ininame="error_reporting"value="E_ALL" />
</php>
<testsuites>
<testsuitename="Test Suite">
<directory>./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>./src/</directory>
<exclude>
<directory>./vendor/</directory>
</exclude>
</whitelist>
</filter>
<logging>
<logtype="junit"target="build/logs/junit.xml"/>
<logtype="coverage-clover"target="build/logs/clover.xml"/>
<logtype="coverage-html"target="build/coverage"/>
</logging>
</phpunit>