-
Notifications
You must be signed in to change notification settings - Fork 2
/
phpunit.xml
67 lines (67 loc) · 3.57 KB
/
phpunit.xml
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?xml version="1.0" encoding="UTF-8"?>
<!-- TODO set checkForUnintentionallyCoveredCode="true" once https://www.drupal.org/node/2626832 is resolved. -->
<!-- PHPUnit expects functional tests to be run with either a privileged user
or your current system user. See core/tests/README.md and
https://www.drupal.org/node/2116263 for details.
-->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="./web/core/tests/bootstrap.php" colors="true" beStrictAboutTestsThatDoNotTestAnything="true" beStrictAboutOutputDuringTests="true" beStrictAboutChangesToGlobalState="true" printerClass="\Drupal\Tests\Listeners\HtmlOutputPrinter" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage>
<include>
<directory>./web/modules/custom</directory>
<directory>./src</directory>
</include>
<exclude>
<directory suffix="Test.php">./</directory>
<directory suffix="TestBase.php">./</directory>
</exclude>
</coverage>
<!-- TODO set printerClass="\Drupal\Tests\Listeners\HtmlOutputPrinter" once
https://youtrack.jetbrains.com/issue/WI-24808 is resolved. Drupal provides a
result printer that links to the html output results for functional tests.
Unfortunately, this breaks the output of PHPStorm's PHPUnit runner. However, if
using the command line you can add
- -printerClass="\Drupal\Tests\Listeners\HtmlOutputPrinter" to use it (note
there should be no spaces between the hyphens).
-->
<php>
<!-- Set error reporting to E_ALL. -->
<ini name="error_reporting" value="32767"/>
<ini name="memory_limit" value="-1"/>
<env name="BROWSERTEST_OUTPUT_DIRECTORY" value="/code/web/sites/simpletest/browser_output"/>
<env name="SIMPLETEST_BASE_URL" value="http://127.0.0.1:8080"/>
<!-- See \weitzman\DrupalTestTraits\MinkSetup -->
<env name="DTT_BASE_URL" value="http://127.0.0.1:8080"/>
<!-- See \weitzman\DrupalTestTraits\WebDriverSetup -->
<env name="DTT_MINK_DRIVER_ARGS" value="["chrome", { "chromeOptions": { "w3c": false } }, "http://127.0.0.1:4444/wd/hub"]"/>
<env name="SIMPLETEST_DB" value="mysql://user:[email protected]/drupal"/>
<const name="BOOTSTRAP_IS_PHPUNIT" value="true"/>
<!-- To disable deprecation testing completely set SYMFONY_DEPRECATIONS_HELPER value: 'disabled' -->
<env name="SYMFONY_DEPRECATIONS_HELPER" value="disabled"/>
</php>
<testsuites>
<testsuite name="unit">
<directory>./web/modules/custom/shepherd/*/tests/src/Unit</directory>
<directory>./web/profiles/custom/shepherd/*/tests/src/Unit</directory>
</testsuite>
<testsuite name="kernel">
<directory>./web/modules/custom/shepherd/*/tests/src/Kernel</directory>
<directory>./web/profiles/custom/shepherd/*/tests/src/Kernel</directory>
</testsuite>
<testsuite name="functional">
<directory>./web/modules/custom/shepherd/*/tests/src/Functional</directory>
<directory>./web/profiles/custom/shepherd/*/tests/src/Functional</directory>
</testsuite>
<testsuite name="functionaljs">
<directory>./web/modules/custom/shepherd/*/tests/src/FunctionalJavascript</directory>
<directory>./web/profiles/custom/shepherd/*/tests/src/FunctionalJavascript</directory>
</testsuite>
</testsuites>
<listeners>
<listener class="\Drupal\Tests\Listeners\DrupalListener">
</listener>
<!-- The Symfony deprecation listener has to come after the Drupal listener -->
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener">
</listener>
</listeners>
<!-- Filter for coverage reports. -->
</phpunit>