summaryrefslogtreecommitdiff
path: root/tests/phpunit/suite.xml
blob: 1227a17a69da99dd9c1558e557cf6886ca6aed8f (plain)
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"?>

<!-- colors don't work on Windows! -->
<phpunit bootstrap="./bootstrap.php"
         colors="true"
         backupGlobals="false"
         convertErrorsToExceptions="true"
         convertNoticesToExceptions="true"
         convertWarningsToExceptions="true"
         stopOnFailure="false"
		 timeoutForSmallTests="2"
		 timeoutForMediumTests="10"
		 timeoutForLargeTests="60"
         strict="true"
		 verbose="true">
	<testsuites>
		<testsuite name="includes">
			<directory>includes</directory>
		</testsuite>
		<testsuite name="languages">
			<directory>languages</directory>
		</testsuite>
		<testsuite name="skins">
			<directory>skins</directory>
		</testsuite>
		<testsuite name="structure">
			<file>StructureTest.php</file>
		</testsuite>
		<testsuite name="uploadfromurl">
			<file>suites/UploadFromUrlTestSuite.php</file>
		</testsuite>
		<testsuite name="extensions">
			<file>suites/ExtensionsTestSuite.php</file>
		</testsuite>
	</testsuites>
	<groups>
		<exclude>
			<group>Utility</group>
			<group>Broken</group>
			<group>ParserFuzz</group>
			<group>Stub</group>
		</exclude>
	</groups>
</phpunit>