2013-03-07 02:48:50 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
2013-10-07 16:30:06 +00:00
|
|
|
<phpunit bootstrap="tests/bootstrap.php" colors="true">
|
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
|
|
|
<env name="SIMPLETEST_BASE_URL" value=""/>
|
|
|
|
<!-- Example SIMPLETEST_BASE_URL value: http://localhost -->
|
|
|
|
<env name="SIMPLETEST_DB" value=""/>
|
|
|
|
<!-- Example SIMPLETEST_DB value: mysql://username:password@localhost/databasename#table_prefix -->
|
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">
|
|
|
|
<directory>./tests/Drupal/Tests</directory>
|
|
|
|
<directory>./modules/*/tests/src/Unit</directory>
|
|
|
|
<directory>../modules/*/tests/src/Unit</directory>
|
2015-10-24 19:37:11 +00:00
|
|
|
<directory>../profiles/*/tests/src/Unit</directory>
|
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
|
|
|
<directory>../sites/*/modules/*/tests/src/Unit</directory>
|
|
|
|
<!-- Exclude Composer's vendor directory so we don't run tests there. -->
|
|
|
|
<exclude>./vendor</exclude>
|
|
|
|
<!-- Exclude Drush tests. -->
|
|
|
|
<exclude>./drush/tests</exclude>
|
|
|
|
</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">
|
|
|
|
<directory>./tests/Drupal/KernelTests</directory>
|
|
|
|
<directory>./modules/*/tests/src/Kernel</directory>
|
|
|
|
<directory>../modules/*/tests/src/Kernel</directory>
|
2015-10-24 19:37:11 +00:00
|
|
|
<directory>../profiles/*/tests/src/Kernel</directory>
|
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
|
|
|
<directory>../sites/*/modules/*/tests/src/Kernel</directory>
|
|
|
|
<!-- Exclude Composer's vendor directory so we don't run tests there. -->
|
|
|
|
<exclude>./vendor</exclude>
|
|
|
|
<!-- Exclude Drush tests. -->
|
|
|
|
<exclude>./drush/tests</exclude>
|
|
|
|
</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">
|
|
|
|
<directory>./tests/Drupal/FunctionalTests</directory>
|
|
|
|
<directory>./modules/*/tests/src/Functional</directory>
|
|
|
|
<directory>../modules/*/tests/src/Functional</directory>
|
2015-10-24 19:37:11 +00:00
|
|
|
<directory>../profiles/*/tests/src/Functional</directory>
|
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
|
|
|
<directory>../sites/*/modules/*/tests/src/Functional</directory>
|
2013-10-07 16:56:43 +00:00
|
|
|
<!-- Exclude Composer's vendor directory so we don't run tests there. -->
|
|
|
|
<exclude>./vendor</exclude>
|
|
|
|
<!-- Exclude Drush tests. -->
|
|
|
|
<exclude>./drush/tests</exclude>
|
2013-03-07 02:48:50 +00:00
|
|
|
</testsuite>
|
|
|
|
</testsuites>
|
2015-02-17 15:55:36 +00:00
|
|
|
<listeners>
|
2015-08-18 09:32:20 +00:00
|
|
|
<listener class="\Drupal\Tests\Listeners\DrupalStandardsListener">
|
|
|
|
</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>
|
|
|
|
<directory>./modules</directory>
|
|
|
|
<directory>../modules</directory>
|
|
|
|
<directory>../sites</directory>
|
2015-03-31 16:13:11 +00:00
|
|
|
<!-- By definition test classes have no tests. -->
|
|
|
|
<exclude>
|
|
|
|
<directory suffix="Test.php">./</directory>
|
|
|
|
<directory suffix="TestBase.php">./</directory>
|
|
|
|
</exclude>
|
2014-06-17 20:47:19 +00:00
|
|
|
</whitelist>
|
2013-10-07 16:56:43 +00:00
|
|
|
</filter>
|
2013-03-07 02:48:50 +00:00
|
|
|
</phpunit>
|