forked from XOOPS/XoopsCore26
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
41 lines (38 loc) · 1.15 KB
/
phpunit.xml
File metadata and controls
41 lines (38 loc) · 1.15 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
<phpunit
backupGlobals="false"
backupStaticAttributes="false"
colors="false"
verbose="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
bootstrap="./tests/unit/bootstrap.php"
>
<testsuites>
<testsuite name="class">
<directory>./tests/unit/class</directory>
</testsuite>
<testsuite name="kernel">
<directory>./tests/unit/kernel</directory>
</testsuite>
<testsuite name="xoops_lib">
<directory>./tests/unit/xoopsLib</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">./htdocs/class</directory>
<directory suffix=".php">./htdocs/kernel</directory>
<directory suffix=".php">./htdocs/xoops_lib</directory>
<exclude>
<directory suffix=".php">./htdocs/xoops_lib/modules</directory>
<directory suffix=".php">./htdocs/xoops_lib/smarty</directory>
<directory suffix=".php">./htdocs/xoops_lib/vendor</directory>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-clover" target="coverage.clover" />
</logging>
</phpunit>