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