aboutsummaryrefslogtreecommitdiffstats
path: root/phpunit.xml.dist
blob: 863277be2a848335b3b7ae6bec2fc525eb42ad96 (plain) (blame)
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="tests/phpunit/bootstrap.php"
		 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
		 xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
		 colors="true"
		 backupGlobals="false"
		 convertDeprecationsToExceptions="true"
		 convertErrorsToExceptions="true"
		 convertNoticesToExceptions="true"
		 convertWarningsToExceptions="true"
		 forceCoversAnnotation="true"
		 failOnWarning="true"
		 stopOnFailure="false"
		 failOnRisky="true"
		 beStrictAboutTestsThatDoNotTestAnything="true"
		 beStrictAboutOutputDuringTests="true"
		 verbose="false"
		 printerClass="MediaWikiPHPUnitResultPrinter"
		 stderr="true">
	<!-- Output only to stderr to avoid "Headers already sent" problems -->
	<php>
		<ini name="memory_limit" value="-1" />
		<ini name="max_execution_time" value="0" />
	</php>
	<testsuites>
		<testsuite name="core:unit">
			<directory>tests/phpunit/unit</directory>
		</testsuite>
		<testsuite name="extensions:unit">
			<file>tests/phpunit/suites/ExtensionsUnitTestSuite.php</file>
		</testsuite>
		<testsuite name="skins:unit">
			<file>tests/phpunit/suites/SkinsUnitTestSuite.php</file>
		</testsuite>
		<testsuite name="includes">
			<directory>tests/phpunit/includes</directory>
		</testsuite>
		<testsuite name="parsertests">
			<file>tests/phpunit/suites/CoreParserTestSuite.php</file>
			<file>tests/phpunit/suites/ExtensionsParserTestSuite.php</file>
		</testsuite>
		<testsuite name="skins">
			<directory>tests/phpunit/structure</directory>
			<file>tests/phpunit/suites/ExtensionsTestSuite.php</file>
		</testsuite>
		<!-- As there is a class Maintenance, we cannot use the name "maintenance" directly -->
		<testsuite name="maintenance_suite">
			<directory>tests/phpunit/maintenance</directory>
		</testsuite>
		<testsuite name="structure">
			<directory>tests/phpunit/structure</directory>
		</testsuite>
		<testsuite name="tests">
			<directory>tests/phpunit/tests</directory>
		</testsuite>
		<testsuite name="extensions">
			<directory>tests/phpunit/structure</directory>
			<file>tests/phpunit/suites/ExtensionsTestSuite.php</file>
			<file>tests/phpunit/suites/ExtensionsParserTestSuite.php</file>
		</testsuite>
		<testsuite name="integration">
			<directory>tests/phpunit/integration</directory>
		</testsuite>
		<testsuite name="docs">
			<directory>tests/phpunit/docs</directory>
		</testsuite>
	</testsuites>
	<groups>
		<exclude>
			<group>Broken</group>
		</exclude>
	</groups>
	<coverage includeUncoveredFiles="false">
		<include>
			<directory suffix=".php">includes</directory>
			<directory suffix=".php">languages</directory>
			<directory suffix=".php">maintenance</directory>
			<directory suffix=".php">extensions</directory>
			<directory suffix=".php">skins</directory>
		</include>
		<exclude>
			<directory suffix=".php">languages/messages</directory>
			<directory suffix=".php">maintenance/benchmarks</directory>
			<directory suffix=".php">extensions/*/tests</directory>
			<directory suffix=".php">skins/*/tests</directory>
		</exclude>
	</coverage>
	<listeners>
		<listener class="JohnKary\PHPUnit\Listener\SpeedTrapListener">
			<arguments>
				<array>
					<element key="slowThreshold">
						<integer>100</integer>
					</element>
					<element key="reportLength">
						<integer>10</integer>
					</element>
				</array>
			</arguments>
		</listener>
	</listeners>
	<extensions>
		<extension class="MediaWikiLoggerPHPUnitExtension" />
		<extension class="MediaWikiTeardownPHPUnitExtension" />
	</extensions>
</phpunit>