-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit-joomla.xml.dist
63 lines (56 loc) · 2.1 KB
/
phpunit-joomla.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
<?xml version="1.0" encoding="UTF-8" ?>
<!--
JBZoo CCK
This file is part of the JBZoo CCK package.
For the full copyright and license information, please view the LICENSE
file that was distributed with this source code.
@package CCK
@license Proprietary http://jbzoo.com/license
@copyright Copyright (C) JBZoo.com, All rights reserved.
@link http://jbzoo.com
-->
<phpunit bootstrap="tests/autoload/init.php"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
syntaxCheck="true"
stopOnError="true"
stopOnFailure="true"
stopOnIncomplete="false"
stopOnSkipped="false"
stopOnRisky="false"
verbose="false"
>
<php>
<const name="__CMS__" value="joomla"/>
<const name="JBZOO_PATH" value="administrator/components/com_jbzoo/cck"/>
<const name="CMS_ADMIN_ID" value="951"/>
<env name="JOOMLA_HOST" value="localhost:8881"/>
<env name="HTTP_USER" value=""/>
<env name="HTTP_PASS" value=""/>
</php>
<testsuites>
<testsuite name="Joomla">
<directory suffix="Test.php">./tests/unit/atoms</directory>
<directory suffix="Test.php">./tests/unit/elements</directory>
<directory suffix="Test.php">./tests/unit/framework</directory>
<file>./tests/unit/utility/Utility_UnitHelperTest.php</file>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="false">
<directory suffix=".php">./src</directory>
<exclude>
<directory suffix=".php">./src/cck/vendor</directory>
</exclude>
</whitelist>
</filter>
<logging>
<log type="coverage-php" target="build/coverage_cov/joomla.cov"/>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="false" showOnlySummary="true"/>
</logging>
</phpunit>