-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml
More file actions
44 lines (42 loc) · 2.48 KB
/
phpunit.xml
File metadata and controls
44 lines (42 loc) · 2.48 KB
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
<phpunit backupGlobals="true"
backupStaticAttributes="false"
bootstrap="index/init.php"
cacheTokens="false"
colors="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
forceCoversAnnotation="false"
mapTestClassNameToCoveredClassName="false"
printerClass="PHPUnit_TextUI_ResultPrinter"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
strict="false"
verbose="true">
<testsuites>
<testsuite name="packages-src">
<directory suffix="Test.php" phpVersion="5.4.4">./packages-src/mpr_cache_factory/tests/</directory>
<directory suffix="Test.php" phpVersion="5.4.4">./packages-src/mpr_cache_file/tests/</directory>
<directory suffix="Test.php" phpVersion="5.4.4">./packages-src/mpr_cache_memcached/tests/</directory>
<directory suffix="Test.php" phpVersion="5.4.4">./packages-src/mpr_collections_arraylist/tests/</directory>
<directory suffix="Test.php" phpVersion="5.4.4">./packages-src/mpr_config/tests/</directory>
<directory suffix="Test.php" phpVersion="5.4.4">./packages-src/mpr_db_mongodb/tests/</directory>
<directory suffix="Test.php" phpVersion="5.4.4">./packages-src/mpr_debug_log/tests/</directory>
<directory suffix="Test.php" phpVersion="5.4.4">./packages-src/mpr_io_filewriter/tests/</directory>
<directory suffix="Test.php" phpVersion="5.4.4">./packages-src/mpr_io_input/tests/</directory>
<directory suffix="Test.php" phpVersion="5.4.4">./packages-src/mpr_io_output/tests/</directory>
<directory suffix="Test.php" phpVersion="5.4.4">./packages-src/mpr_loader_fileloader/tests/</directory>
<directory suffix="Test.php" phpVersion="5.4.4">./packages-src/mpr_net_curl/tests/</directory>
<directory suffix="Test.php" phpVersion="5.4.4">./packages-src/mpr_net_multicurl/tests/</directory>
</testsuite>
</testsuites>
<logging>
<log type="junit" target="/tmp/logfile.xml" charset="UTF-8" logIncompleteSkipped="false"/>
<log type="json" target="/tmp/jsonlog.json" charset="UTF-8" logIncompleteSkipped="false"/>
<log type="coverage-html" target="/tmp/report" charset="UTF-8"
highlight="true" lowUpperBound="35" highLowerBound="70"/>
</logging>
</phpunit>