-
Notifications
You must be signed in to change notification settings - Fork 1
/
phpunit-browser.xml
44 lines (39 loc) · 1.3 KB
/
phpunit-browser.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
<?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 colors="false"
backupGlobals="false"
backupStaticAttributes="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
syntaxCheck="true"
stopOnError="true"
stopOnFailure="true"
stopOnIncomplete="true"
stopOnSkipped="false"
verbose="false"
>
<testsuites>
<testsuite name="Browser Emulator">
<directory suffix="Browser_EmulatorTest.php">tests/unit/browser</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="false">
<directory suffix=".php">./src</directory>
<exclude>
<directory suffix=".php">./src/cck/vendor</directory>
</exclude>
</whitelist>
</filter>
</phpunit>