-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathphpunit.xml
More file actions
51 lines (49 loc) · 1.68 KB
/
phpunit.xml
File metadata and controls
51 lines (49 loc) · 1.68 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
45
46
47
48
49
50
51
<?xml version="1.0"?>
<!--
Copyright (c) 2018 - 2025 Daniel Popiniuc.
All rights reserved. This program and the accompanying materials
are made available under the terms of the Eclipse Public License v1.0
which accompanies this distribution, and is available at
http://www.eclipse.org/legal/epl-v10.html
-->
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/12.4/phpunit.xsd"
backupGlobals="true"
backupStaticAttributes="true"
beStrictAboutChangesToGlobalState="false"
beStrictAboutCoversAnnotation="false"
beStrictAboutOutputDuringTests="false"
beStrictAboutTestsThatDoNotTestAnything="true"
bootstrap="tests/php-unit/php-unit--bootstrap.php"
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"
verbose="true">
<testsuites>
<testsuite name="InputOutputTesting">
<directory suffix="Test.php">tests/php-unit</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">source</directory>
</whitelist>
</filter>
<logging>
<testdoxHtml outputFile="results/php-unit/testdox.html"/>
<testdoxXml outputFile="results/php-unit/testdox.xml"/>
<testdoxText outputFile="results/php-unit/testdox.txt"/>
</logging>
</phpunit>