Updated all the contrib modules to their latest versions.
[yaffs-website] / web / modules / contrib / permissions_by_term / tests / phpunit.xml.dist
1 <phpunit bootstrap="./../../../core/tests/bootstrap.php" colors="true"
2          beStrictAboutTestsThatDoNotTestAnything="true"
3          beStrictAboutOutputDuringTests="true"
4          beStrictAboutChangesToGlobalState="true"
5          printerClass="\Drupal\Tests\Listeners\HtmlOutputPrinter">
6
7   <env name="PHP_IDE_CONFIG" value="PHPSTORM"/>
8
9   <php>
10     <!-- Set error reporting to E_ALL. -->
11     <ini name="error_reporting" value="32767"/>
12     <!-- Do not limit the amount of memory tests take to run. -->
13     <ini name="memory_limit" value="-1"/>
14     <!-- Example SIMPLETEST_BASE_URL value: http://localhost -->
15     <env name="SIMPLETEST_BASE_URL" value="http://pbt:8888"/>
16     <!-- Example SIMPLETEST_DB value: mysql://username:password@localhost/databasename#table_prefix -->
17     <env name="SIMPLETEST_DB" value="sqlite://localhost//tmp/db.sqlite"/>
18     <!-- Example BROWSERTEST_OUTPUT_DIRECTORY value: /path/to/webroot/sites/simpletest/browser_output -->
19     <env name="BROWSERTEST_OUTPUT_DIRECTORY" value="/tmp"/>
20   </php>
21
22   <testsuites>
23     <testsuite name="unit">
24       <directory>./src/Unit</directory>
25     </testsuite>
26   </testsuites>
27
28   <testsuites>
29     <testsuite name="kernel">
30       <directory>./src/Kernel</directory>
31     </testsuite>
32   </testsuites>
33
34   <testsuites>
35     <testsuite name="Permissions by Entity - kernel">
36       <directory>./../modules/permissions_by_entity/tests/src/Kernel</directory>
37     </testsuite>
38   </testsuites>
39
40 </phpunit>