-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
41 lines (41 loc) · 1.52 KB
/
phpunit.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="phpunit.xsd"
colors="true"
convertDeprecationsToExceptions="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stderr="true"
stopOnFailure="false"
backupGlobals="false"
syntaxCheck="true"
>
<testsuites>
<testsuite name="Application">
<directory>./module/Application/test</directory>
</testsuite>
<testsuite name="Common">
<directory>./module/Common/test</directory>
</testsuite>
<testsuite name="Setup">
<directory>./module/Setup/test</directory>
</testsuite>
<testsuite name="Translations">
<directory>./module/Translations/test</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">./module/Application/src</directory>
<directory suffix=".php">./module/Common/src</directory>
<directory suffix=".php">./module/Setup/src</directory>
<directory suffix=".php">./module/Translations/src</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-text" target="php://stdout"/>
<log type="coverage-html" target="build/logs/coverage" lowUpperBound="35" highLowerBound="70"/>
<log type="coverage-clover" target="build/logs/clover.xml"/>
</logging>
</phpunit>