-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathphpunit.xml
More file actions
56 lines (53 loc) · 2.03 KB
/
phpunit.xml
File metadata and controls
56 lines (53 loc) · 2.03 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 backupGlobals="false"
defaultTestSuite="all_tests"
colors="true"
bootstrap="./tests/bootstrap_phpunit.php"
>
<testsuites>
<testsuite name="all_tests">
<directory>./tests/unit</directory>
<directory>./tests/integration</directory>
</testsuite>
<testsuite name="profiling">
<directory>./tests/profiling</directory>
</testsuite>
</testsuites>
<coverage>
<include>
<directory suffix=".php">./src</directory>
</include>
<report>
<html outputDirectory="coverage"/>
<clover outputFile="clover.xml"/>
<!-- <junit outputFile="junit.xml"/> -->
</report>
</coverage>
<listeners>
<listener class="JClaveau\PHPUnit\Listener\StopwatchListener" />
<listener class="PHPUnit\XHProfTestListener\XHProfTestListener">
<arguments>
<array>
<element key="xhprofLibFile">
<string>./vendor/jclaveau/xhprof/xhprof_lib/utils/xhprof_lib.php</string>
</element>
<element key="xhprofRunsFile">
<string>./vendor/jclaveau/xhprof/xhprof_lib/utils/xhprof_runs.php</string>
</element>
<element key="xhprofWeb">
<string>http://xhprof.loc/index.php</string>
</element>
<element key="appNamespace">
<string>php-logical-filter</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>
</phpunit>