-
Notifications
You must be signed in to change notification settings - Fork 0
/
phpunit.xml.dist
52 lines (51 loc) · 2.35 KB
/
phpunit.xml.dist
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
45
46
47
48
49
50
51
52
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="web/core/tests/bootstrap.php" colors="true"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutOutputDuringTests="true"
beStrictAboutChangesToGlobalState="true"
checkForUnintentionallyCoveredCode="false">
<php>
<!-- Set error reporting to E_ALL. -->
<ini name="error_reporting" value="32767"/>
<!-- Do not limit the amount of memory tests take to run. -->
<ini name="memory_limit" value="-1"/>
<!-- SIMPLETEST_BASE_URL can be overridden using environment variables. -->
<env name="SIMPLETEST_BASE_URL" value="http://127.0.0.1"/>
<env name="SIMPLETEST_DB" value=""/>
<env name="BROWSERTEST_OUTPUT_DIRECTORY" value=""/>
</php>
<testsuites>
<testsuite name="unit"><!-- Unit tests -->
<directory suffix="Test.php">./web/modules/custom/**/tests/src/Unit</directory>
<directory suffix="Test.php">./web/themes/custom/**/tests/src/Unit</directory>
</testsuite>
<testsuite name="kernel"><!-- Kernel tests -->
<directory suffix="Test.php">./web/modules/custom/**/tests/src/Kernel</directory>
<directory suffix="Test.php">./web/themes/custom/**/tests/src/Kernel</directory>
</testsuite>
<testsuite name="functional"><!-- Functional tests -->
<directory suffix="Test.php">./web/modules/custom/**/tests/src/Functional</directory>
<directory suffix="Test.php">./web/themes/custom/**/tests/src/Functional</directory>
</testsuite>
<testsuite name="functional-javascript"><!-- Functional Javascript tests -->
<directory suffix="Test.php">./web/modules/custom/**/tests/src/FunctionalJavascript</directory>
<directory suffix="Test.php">./web/themes/custom/**/tests/src/FunctionalJavascript</directory>
</testsuite>
</testsuites>
<listeners>
<listener class="\Drupal\Tests\Listeners\DrupalStandardsListener">
</listener>
</listeners>
<!-- Filter for coverage reports. -->
<filter>
<whitelist>
<directory>./web/modules/custom</directory>
<directory>./web/themes/custom</directory>
<!-- By definition test classes have no tests. -->
<exclude>
<directory suffix="Test.php">./</directory>
<directory suffix="TestBase.php">./</directory>
</exclude>
</whitelist>
</filter>
</phpunit>