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" | |
9 | syntaxCheck="false" | |
7ab67b43 | 10 | stderr="true" |
781cfdd0 TO |
11 | beStrictAboutTestsThatDoNotTestAnything="false" |
12 | bootstrap="tests/phpunit/CiviTest/bootstrap.php" | |
13 | > | |
14 | <testsuites> | |
fd3568c3 TO |
15 | <testsuite name="api_v3_AllTests"> |
16 | <directory>./tests/phpunit/api</directory> | |
17 | </testsuite> | |
18 | <testsuite name="CRM_AllTests"> | |
19 | <directory>./tests/phpunit/CRM</directory> | |
20 | </testsuite> | |
21 | <testsuite name="Civi_AllTests"> | |
22 | <directory>./tests/phpunit/Civi</directory> | |
23 | </testsuite> | |
24 | <testsuite name="WebTest_AllTests"> | |
25 | <directory>./tests/phpunit/WebTest</directory> | |
781cfdd0 TO |
26 | </testsuite> |
27 | </testsuites> | |
28 | ||
29 | <filter> | |
30 | <whitelist> | |
31 | <directory suffix=".php">./CRM</directory> | |
32 | <directory suffix=".php">./Civi</directory> | |
33 | <directory suffix=".php">./api</directory> | |
34 | </whitelist> | |
35 | </filter> | |
09e1f1e3 TO |
36 | |
37 | <listeners> | |
38 | <listener class="Civi\Test\CiviTestListener"> | |
39 | <arguments></arguments> | |
40 | </listener> | |
41 | </listeners> | |
42 | ||
781cfdd0 TO |
43 | </phpunit> |
44 |