-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml
56 lines (53 loc) · 2.04 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
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd"
bootstrap="php-tests/_bootstrap.php"
backupGlobals="false"
backupStaticAttributes="false"
cacheTokens="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
forceCoversAnnotation="false"
processIsolation="false"
stopOnError="false"
stopOnFailure="false"
stopOnIncomplete="false"
stopOnSkipped="false"
stopOnRisky="false"
timeoutForSmallTests="1"
timeoutForMediumTests="10"
timeoutForLargeTests="60"
defaultTestSuite="ALL"
verbose="true">
<php>
<ini name="error_reporting" value="-1" />
<ini name="intl.default_locale" value="en" />
<ini name="intl.error_level" value="0" />
<ini name="memory_limit" value="-1" />
</php>
<logging>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="false" />
<log type="coverage-clover" target="php-tests/data/clover.xml" />
</logging>
<filter>
<whitelist>
<directory suffix=".php">php-src/core/</directory>
<directory suffix=".php">php-src/output_cli/</directory>
<directory suffix=".php">php-src/output_json/</directory>
<directory suffix=".php">php-src/form_kw/</directory>
<!--directory suffix=".php">php-src/kw/</directory>
<directory suffix=".php">php-src/output_direct/</directory>
<directory suffix=".php">php-src/output_kw/</directory-->
</whitelist>
</filter>
<testsuites>
<testsuite name="ALL">
<directory>php-tests/coreTests</directory>
<directory>php-tests/cliTests</directory>
<directory>php-tests/jsonTests</directory>
<directory>php-tests/kwTests</directory>
</testsuite>
</testsuites>
</phpunit>