-
Notifications
You must be signed in to change notification settings - Fork 8
/
phpunit.xml.dist
65 lines (65 loc) · 2.78 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
64
65
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd"
backupGlobals="true"
backupStaticAttributes="false"
bootstrap="test/unit/_bootstrap.php"
cacheTokens="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
forceCoversAnnotation="false"
mapTestClassNameToCoveredClassName="false"
printerClass="PHPUnit_TextUI_ResultPrinter"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
testSuiteLoaderClass="PHPUnit_Runner_StandardTestSuiteLoader"
timeoutForSmallTests="1"
timeoutForMediumTests="10"
timeoutForLargeTests="60"
strict="false"
verbose="false">
<testsuites>
<testsuite name="My Test Suite">
<directory>test/unit</directory>
<!--<file>/path/to/MyTest.php</file>-->
<!--<exclude>/path/to/exclude</exclude>-->
</testsuite>
</testsuites>
<filter>
<!--<blacklist>-->
<!--<directory suffix=".php">/path/to/files</directory>-->
<!--<file>/path/to/file</file>-->
<!--<exclude>-->
<!--<directory suffix=".php">/path/to/files</directory>-->
<!--<file>/path/to/file</file>-->
<!--</exclude>-->
<!--</blacklist>-->
<whitelist
addUncoveredFilesFromWhitelist="true"
processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">source/**</directory>
<!--<file>/path/to/file</file>-->
<exclude>
<directory suffix="*.php">source</directory>
<!--<file>/path/to/file</file>-->
</exclude>
</whitelist>
</filter>
<logging>
<!--<log type="coverage-html" target="public/coverage" charset="UTF-8"-->
<!--highlight="true" lowUpperBound="35" highLowerBound="70"/>-->
<!--<log type="coverage-clover" target="public/download/coverage.xml"/>-->
<!--<!–<log type="coverage-php" target="/tmp/coverage.serialized"/>–>-->
<!--<!–<log type="coverage-text" target="php://stdout" showUncoveredFiles="false"/>–>-->
<!--<log type="json" target="/tmp/logfile.json"/>-->
<!--<log type="tap" target="/tmp/logfile.tap"/>-->
<!--<log type="junit" target="/tmp/logfile.xml" logIncompleteSkipped="false"/>-->
<!--<log type="testdox-html" target="/tmp/testdox.html"/>-->
<!--<log type="testdox-text" target="/tmp/testdox.txt"/>-->
</logging>
</phpunit>