-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathphpunit.xml.dist
63 lines (63 loc) · 2.08 KB
/
phpunit.xml.dist
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
57
58
59
60
61
62
63
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="./tests/bootstrap.php"
beStrictAboutChangesToGlobalState="true"
beStrictAboutCoversAnnotation="true"
beStrictAboutTestsThatDoNotTestAnything="false"
convertNoticesToExceptions="true"
colors="true"
stopOnError="false"
stopOnFailure="false"
verbose="true"
>
<filter>
<whitelist>
<file>base_conf.php.dist</file>
<directory suffix=".php">./</directory>
<exclude>
<directory>./build</directory>
<directory>./contrib</directory>
<directory>./custom</directory>
<directory>./docs</directory>
<directory>./images</directory>
<directory>./rpm</directory>
<directory>./sql</directory>
<directory>./styles</directory>
<directory>./tests</directory>
<directory>./vendor</directory>
<file>base_conf.php</file>
<file>includes/base_krnl.php</file>
<file>languages/czech.lang.php</file>
<file>languages/danish.lang.php</file>
<file>languages/finnish.lang.php</file>
<file>languages/french.lang.php</file>
<file>languages/italian.lang.php</file>
<file>languages/norwegian.lang.php</file>
<file>languages/russian.lang.php</file>
<file>languages/swedish.lang.php</file>
<file>languages/turkish.lang.php</file>
</exclude>
</whitelist>
</filter>
<testsuites>
<testsuite name="BASE test suite">
<directory>./tests/PhpUnit/</directory>
</testsuite>
</testsuites>
<php>
<includePath>includes</includePath>
<ini name="error_reporting" value="E_ALL" />
<ini name="xdebug.cli_color" value = "1" />
<ini name="xdebug.mode" value = "coverage" />
<ini name="display_errors" value = "1" />
<ini name="log_errors" value = "1" />
<ini name="error_log" value = "build/error.log" />
<ini name="docref_root" value="http://www.php.net/manual/en/" />
</php>
<logging>
<log type="coverage-clover" target="build/logs/clover.xml"/>
<log type="coverage-html" target="build/logs/CCR" lowUpperBound="10" highLowerBound="90"/>
</logging>
</phpunit>