Add 1.31.3/1.32.3 to HISTORY
[lhc/web/wiklou.git] / phpunit.xml.dist
1 <?xml version="1.0" encoding="UTF-8"?>
2 <phpunit bootstrap="tests/phpunit/bootstrap.php"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4 xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.8/phpunit.xsd"
5
6 colors="true"
7 backupGlobals="false"
8 convertErrorsToExceptions="true"
9 convertNoticesToExceptions="true"
10 convertWarningsToExceptions="true"
11 forceCoversAnnotation="true"
12 stopOnFailure="false"
13 timeoutForSmallTests="10"
14 timeoutForMediumTests="30"
15 timeoutForLargeTests="60"
16 beStrictAboutTestsThatDoNotTestAnything="true"
17 beStrictAboutOutputDuringTests="true"
18 beStrictAboutTestSize="true"
19 verbose="false">
20 <php>
21 <ini name="memory_limit" value="512M" />
22 </php>
23 <testsuites>
24 <testsuite name="unit">
25 <directory>tests/phpunit/unit</directory>
26 <directory>**/**/tests/phpunit/unit</directory>
27 </testsuite>
28 <testsuite name="integration">
29 <directory>tests/phpunit/integration</directory>
30 <directory>**/**/tests/phpunit/integration</directory>
31 </testsuite>
32 </testsuites>
33 <groups>
34 <exclude>
35 <group>Broken</group>
36 </exclude>
37 </groups>
38 <filter>
39 <whitelist addUncoveredFilesFromWhitelist="true">
40 <directory suffix=".php">includes</directory>
41 <directory suffix=".php">languages</directory>
42 <directory suffix=".php">maintenance</directory>
43 <exclude>
44 <directory suffix=".php">languages/messages</directory>
45 <file>languages/data/normalize-ar.php</file>
46 <file>languages/data/normalize-ml.php</file>
47 </exclude>
48 </whitelist>
49 </filter>
50 <listeners>
51 <listener class="JohnKary\PHPUnit\Listener\SpeedTrapListener">
52 <arguments>
53 <array>
54 <element key="slowThreshold">
55 <integer>50</integer>
56 </element>
57 <element key="reportLength">
58 <integer>50</integer>
59 </element>
60 </array>
61 </arguments>
62 </listener>
63 </listeners>
64 </phpunit>