-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
56 lines (56 loc) · 2.11 KB
/
Copy pathphpunit.xml.dist
File metadata and controls
56 lines (56 loc) · 2.11 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
50
51
52
53
54
55
56
<?xml version="1.0" encoding="utf-8" ?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://raw.github.com/sebastianbergmann/phpunit/master/phpunit.xsd"
bootstrap="./vendor/autoload.php"
colors="true"
strict="true"
verbose="true"
backupGlobals="false"
backupStaticAttributes="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
>
<testsuites>
<testsuite name="tests">
<directory>./Tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">./src/</directory>
</whitelist>
</filter>
<listeners>
<!--<listener class="PHPUnit\XHProfTestListener\XHProfTestListener" file="vendor/phpunit/test-listener-xhprof/src/XHProfTestListener.php">-->
<!--<arguments>-->
<!--<array>-->
<!--<element key="appNamespace">-->
<!--<string>App</string>-->
<!--</element>-->
<!--<element key="xhprofWeb">-->
<!--<string>http://localhost:8081/vendor/lox/xhprof/xhprof_html/index.php</string>-->
<!--</element>-->
<!--<element key="xhprofLibFile">-->
<!--<string>./vendor/lox/xhprof/xhprof_lib/utils/xhprof_lib.php</string>-->
<!--</element>-->
<!--<element key="xhprofRunsFile">-->
<!--<string>./vendor/lox/xhprof/xhprof_lib/utils/xhprof_runs.php</string>-->
<!--</element>-->
<!--<element key="xhprofFlags">-->
<!--<string>XHPROF_FLAGS_CPU,XHPROF_FLAGS_MEMORY</string>-->
<!--</element>-->
<!--<element key="xhprofIgnore">-->
<!--<string>call_user_func,call_user_func_array</string>-->
<!--</element>-->
<!--</array>-->
<!--</arguments>-->
<!--</listener>-->
</listeners>
<logging>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
</phpunit>