2013-03-07 02:48:50 +00:00
<?xml version="1.0" encoding="UTF-8"?>
2021-07-07 11:40:50 +00:00
<!-- For how to customize PHPUnit configuration, see core/tests/README.md. -->
2015-12-07 14:37:15 +00:00
<!-- TODO set checkForUnintentionallyCoveredCode="true" once https://www.drupal.org/node/2626832 is resolved. -->
2016-09-02 16:07:07 +00:00
<!-- 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.
2016-04-14 23:51:16 +00:00
-->
2015-12-07 14:37:15 +00:00
<phpunit bootstrap="tests/bootstrap.php" colors="true"
beStrictAboutTestsThatDoNotTestAnything="true"
beStrictAboutOutputDuringTests="true"
2019-06-23 11:32:48 +00:00
beStrictAboutChangesToGlobalState="true"
2020-03-05 11:34:11 +00:00
failOnWarning="true"
2020-02-14 12:21:47 +00:00
printerClass="\Drupal\Tests\Listeners\HtmlOutputPrinter"
cacheResult="false">
2014-03-10 11:20:41 +00:00
<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"/>
Issue #2232861 by grom358, daffie, alexpott, larowlan, pfrenssen, hussainweb, pcambra, jibran, phenaproxima, moshe weitzman, nick_schuch: Create BrowserTestBase for web-testing on top of Mink
2015-04-12 11:08:53 +00:00
<!-- Example SIMPLETEST_BASE_URL value: http://localhost -->
2016-04-26 13:43:36 +00:00
<env name="SIMPLETEST_BASE_URL" value=""/>
Issue #2232861 by grom358, daffie, alexpott, larowlan, pfrenssen, hussainweb, pcambra, jibran, phenaproxima, moshe weitzman, nick_schuch: Create BrowserTestBase for web-testing on top of Mink
2015-04-12 11:08:53 +00:00
<!-- Example SIMPLETEST_DB value: mysql://username:password@localhost/databasename#table_prefix -->
2016-04-26 13:43:36 +00:00
<env name="SIMPLETEST_DB" value=""/>
2016-04-13 23:13:58 +00:00
<!-- Example BROWSERTEST_OUTPUT_DIRECTORY value: /path/to/webroot/sites/simpletest/browser_output -->
2016-04-26 13:43:36 +00:00
<env name="BROWSERTEST_OUTPUT_DIRECTORY" value=""/>
2019-11-27 09:21:38 +00:00
<!-- To have browsertest output use an alternative base URL. For example if
SIMPLETEST_BASE_URL is an internal DDEV URL, you can set this to the
external DDev URL so you can follow the links directly.
-->
<env name="BROWSERTEST_OUTPUT_BASE_URL" value=""/>
2018-05-11 14:20:00 +00:00
<!-- To disable deprecation testing completely uncomment the next line. -->
<!-- <env name="SYMFONY_DEPRECATIONS_HELPER" value="disabled"/> -->
Issue #2775653 by dawehner, droplet, michielnugter, Lendude, jibran, alexpott, Mixologic, klausi, juampynr, cosmicdreams, cspitzlay, justafish, drpal, larowlan, claudiu.cristea, Berdir, Mile23, andypost, xjm, mtodor: JavascriptTests with webDriver
2018-02-03 09:54:09 +00:00
<!-- Example for changing the driver class for mink tests MINK_DRIVER_CLASS value: 'Drupal\FunctionalJavascriptTests\DrupalSelenium2Driver' -->
2019-08-06 06:50:55 +00:00
<env name="MINK_DRIVER_CLASS" value=''/>
2017-11-28 09:02:34 +00:00
<!-- Example for changing the driver args to mink tests MINK_DRIVER_ARGS value: '["http://127.0.0.1:8510"]' -->
2019-08-06 06:50:55 +00:00
<env name="MINK_DRIVER_ARGS" value=''/>
2019-08-12 21:15:26 +00:00
<!-- Example for changing the driver args to webdriver tests MINK_DRIVER_ARGS_WEBDRIVER value: '["chrome", { "chromeOptions": { "w3c": false } }, "http://localhost:4444/wd/hub"]' For using the Firefox browser, replace "chrome" with "firefox" -->
2019-08-06 06:50:55 +00:00
<env name="MINK_DRIVER_ARGS_WEBDRIVER" value=''/>
2014-03-10 11:20:41 +00:00
</php>
2013-03-07 02:48:50 +00:00
<testsuites>
Issue #2232861 by grom358, daffie, alexpott, larowlan, pfrenssen, hussainweb, pcambra, jibran, phenaproxima, moshe weitzman, nick_schuch: Create BrowserTestBase for web-testing on top of Mink
2015-04-12 11:08:53 +00:00
<testsuite name="unit">
2016-06-24 16:36:21 +00:00
<file>./tests/TestSuites/UnitTestSuite.php</file>
Issue #2232861 by grom358, daffie, alexpott, larowlan, pfrenssen, hussainweb, pcambra, jibran, phenaproxima, moshe weitzman, nick_schuch: Create BrowserTestBase for web-testing on top of Mink
2015-04-12 11:08:53 +00:00
</testsuite>
Issue #2304461 by dawehner, neclimdul, naveenvalecha, jibran, tim.plunkett, phenaproxima, Xano, hussainweb, sun, hitesh-jain, amateescu, alexpott, daffie, Mile23, Wim Leers, larowlan: KernelTestBaseTNG™
2015-08-18 00:25:27 +00:00
<testsuite name="kernel">
2016-06-24 16:36:21 +00:00
<file>./tests/TestSuites/KernelTestSuite.php</file>
Issue #2304461 by dawehner, neclimdul, naveenvalecha, jibran, tim.plunkett, phenaproxima, Xano, hussainweb, sun, hitesh-jain, amateescu, alexpott, daffie, Mile23, Wim Leers, larowlan: KernelTestBaseTNG™
2015-08-18 00:25:27 +00:00
</testsuite>
Issue #2232861 by grom358, daffie, alexpott, larowlan, pfrenssen, hussainweb, pcambra, jibran, phenaproxima, moshe weitzman, nick_schuch: Create BrowserTestBase for web-testing on top of Mink
2015-04-12 11:08:53 +00:00
<testsuite name="functional">
2016-06-24 16:36:21 +00:00
<file>./tests/TestSuites/FunctionalTestSuite.php</file>
2013-03-07 02:48:50 +00:00
</testsuite>
Issue #2469713 by dawehner, pfrenssen, alexpott, elachlan, Mixologic, larowlan, hussainweb, benjy, jibran, Wim Leers, isntall: Step 2: Create a JavaScriptTestBase using PhantomJs Driver/Binary
2016-04-07 11:25:35 +00:00
<testsuite name="functional-javascript">
2016-06-24 16:36:21 +00:00
<file>./tests/TestSuites/FunctionalJavascriptTestSuite.php</file>
Issue #2469713 by dawehner, pfrenssen, alexpott, elachlan, Mixologic, larowlan, hussainweb, benjy, jibran, Wim Leers, isntall: Step 2: Create a JavaScriptTestBase using PhantomJs Driver/Binary
2016-04-07 11:25:35 +00:00
</testsuite>
2019-10-04 22:05:43 +00:00
<testsuite name="build">
<file>./tests/TestSuites/BuildTestSuite.php</file>
</testsuite>
2013-03-07 02:48:50 +00:00
</testsuites>
2015-02-17 15:55:36 +00:00
<listeners>
2017-12-12 20:55:11 +00:00
<listener class="\Drupal\Tests\Listeners\DrupalListener">
2017-11-09 12:51:06 +00:00
</listener>
2015-02-17 15:55:36 +00:00
</listeners>
2013-10-07 16:56:43 +00:00
<!-- Filter for coverage reports. -->
<filter>
2014-06-17 20:47:19 +00:00
<whitelist>
<directory>./includes</directory>
<directory>./lib</directory>
2019-06-28 08:50:48 +00:00
<!-- Extensions can have their own test directories, so exclude those. -->
2014-06-17 20:47:19 +00:00
<directory>./modules</directory>
2019-06-28 08:50:48 +00:00
<exclude>
<directory>./modules/*/src/Tests</directory>
<directory>./modules/*/tests</directory>
</exclude>
2014-06-17 20:47:19 +00:00
<directory>../modules</directory>
2019-06-28 08:50:48 +00:00
<exclude>
<directory>../modules/*/src/Tests</directory>
<directory>../modules/*/tests</directory>
<directory>../modules/*/*/src/Tests</directory>
<directory>../modules/*/*/tests</directory>
</exclude>
2014-06-17 20:47:19 +00:00
<directory>../sites</directory>
</whitelist>
2013-10-07 16:56:43 +00:00
</filter>
2013-03-07 02:48:50 +00:00
</phpunit>