-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml
123 lines (115 loc) · 3.27 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<phpunit
colors="true"
backupGlobals="true"
backupStaticAttributes="false"
verbose="true"
debug="true"
processIsolation="false"
>
<!--
cacheTokens="false"
colors="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
forceCoversAnnotation="false"
mapTestClassNameToCoveredClassName="false"
printerClass="PHPUnit_TextUI_ResultPrinter"
printerFile="/path/to/ResultPrinter.php"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
testSuiteLoaderClass="PHPUnit_Runner_StandardTestSuiteLoader"
testSuiteLoaderFile="/path/to/StandardTestSuiteLoader.php"
strict="false"
verbose="false"
-->
<testsuites>
<testsuite name="Base">
<file>test/base/test.env.php</file>
</testsuite>
<!-- <testsuite name="Env">
<file>test/env/test.env.unix.php</file>
<file>test/env/test.env.ini.php</file>
<file>test/env/test.env.php</file>
</testsuite>
<testsuite name="Loader">
<file>test/loader/test.loader.php</file>
</testsuite>
<testsuite name="Log">
<file>test/log/test.logger.1.php</file>
<file>test/log/test.logger.2.php</file>
<file>test/log/test.logger.3.php</file>
</testsuite>
<testsuite name="Callback">
<file>test/callback/test.callback.1.php</file>
</testsuite>
<testsuite name="Functions">
<file>test/stream/test.arrays.php</file>
</testsuite>
<testsuite name="Format">
<file>test/format/plist/test.reader.php</file>
<file>test/format/ini/test.parser.php</file>
</testsuite>
<testsuite name="Object">
<file>test/object/test.singleton.php</file>
<file>test/object/test.tracked.php</file>
</testsuite>
<testsuite name="Curl">
<file>test/curl/test.curl.1.php</file>
<file>test/curl/test.curl.2.php</file>
<file>test/curl/test.curl.3.php</file>
<file>test/curl/test.curl.4.php</file>
<file>test/curl/test.curl.5.php</file>
</testsuite>
<testsuite name="Stream">
<file>test/stream/test.stream.MongoFS.php</file>
<file>test/stream/test.stream.VariableStream.php</file>
</testsuite>
-->
</testsuites>
<groups>
<!--
<include>
<group>name</group>
</include>
<exclude>
<group>name</group>
</exclude>
-->
</groups>
<logging>
<!--
<log type="json" target="info/phpunit.log.json" />
<log type="coverage-html" target="info/phpunit.coverage.html" showUncoveredFiles="true" />
<log type="testdox-html" target="info/phpunit.testdox.html" />
<log type="testdox-text" target="info/phpunit.testdox.txt" />
<log type="coverage-php" target="info/phpunit.coverage.php" />
-->
</logging>
<php>
<!--<ini name="error_log" value="info/test.stderr" /> -->
<ini name="flwcore.ecosystem" value="testing" />
<ini name="flwcore.basedir" value="../lib.php-core-classes" />
<ini name="flwcore.loadlibs" value="" />
<!-- <ini name="auto_prepend_file" value="bootstrap.php" /> -->
<!--
<ini name="flwcore.log_target" value="php://stderr" />
-->
<!--
<includePath>.</includePath>
<ini name="foo" value="bar"/>
<const name="foo" value="bar"/>
<var name="foo" value="bar"/>
<env name="foo" value="bar"/>
<post name="foo" value="bar"/>
<get name="foo" value="bar"/>
<cookie name="foo" value="bar"/>
<server name="foo" value="bar"/>
<files name="foo" value="bar"/>
<request name="foo" value="bar"/>
-->
</php>
</phpunit>