Solving RT ticket #1092988
[civicrm-core.git] / phpunit.xml.dist
CommitLineData
781cfdd0
TO
1<phpunit backupGlobals="false"
2 backupStaticAttributes="false"
3 colors="true"
4 convertErrorsToExceptions="true"
5 convertNoticesToExceptions="true"
6 convertWarningsToExceptions="true"
91d9340f 7 convertDeprecationsToExceptions="true"
781cfdd0
TO
8 processIsolation="false"
9 stopOnFailure="false"
7ab67b43 10 stderr="true"
781cfdd0
TO
11 beStrictAboutTestsThatDoNotTestAnything="false"
12 bootstrap="tests/phpunit/CiviTest/bootstrap.php"
f811d576 13 cacheResult="false"
781cfdd0
TO
14>
15 <testsuites>
fd3568c3
TO
16 <testsuite name="api_v3_AllTests">
17 <directory>./tests/phpunit/api</directory>
18 </testsuite>
19 <testsuite name="CRM_AllTests">
20 <directory>./tests/phpunit/CRM</directory>
21 </testsuite>
22 <testsuite name="Civi_AllTests">
23 <directory>./tests/phpunit/Civi</directory>
24 </testsuite>
25 <testsuite name="WebTest_AllTests">
26 <directory>./tests/phpunit/WebTest</directory>
781cfdd0
TO
27 </testsuite>
28 </testsuites>
29
30 <filter>
31 <whitelist>
32 <directory suffix=".php">./CRM</directory>
33 <directory suffix=".php">./Civi</directory>
34 <directory suffix=".php">./api</directory>
35 </whitelist>
36 </filter>
09e1f1e3
TO
37
38 <listeners>
39 <listener class="Civi\Test\CiviTestListener">
40 <arguments></arguments>
41 </listener>
42 </listeners>
43
781cfdd0
TO
44</phpunit>
45