-
Notifications
You must be signed in to change notification settings - Fork 11
/
phpunit.xml.dist
50 lines (46 loc) · 1.72 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
<?xml version="1.0" encoding="UTF-8"?>
<!-- Setup test files and directories -->
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="./phpunit/bootstrap.php"
cacheTokens="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
mapTestClassNameToCoveredClassName="false"
verbose="true"
debug="false"
syntaxCheck="false">
<!-- Setup testsuites -->
<testsuites>
<testsuite name="Basic">
<directory>./phpunit</directory>
</testsuite>
</testsuites>
<!-- /Setup testsuites -->
<filter>
<blacklist>
<directory suffix=".php">./build</directory>
<directory suffix=".php">./vendor</directory>
<file>./phpunit/bootstrap.php</file>
</blacklist>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./src</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="./phpunit/log/coverage" charset="UTF-8"
yui="true" highlight="true"
lowUpperBound="50" highLowerBound="80" />
<log type="coverage-clover" target="./phpunit/log/coverage.xml"/>
<log type="coverage-php" target="./phpunit/log/coverage.php"/>
<log type="coverage-text" target="php://stdout" />
</logging>
</phpunit>
<!-- Setup test files and directories -->