71 lines
		
	
	
	
		
			2.8 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			71 lines
		
	
	
	
		
			2.8 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?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 bootstrap="tests/bootstrap.php" colors="true"
 | |
|          beStrictAboutTestsThatDoNotTestAnything="true"
 | |
|          beStrictAboutOutputDuringTests="true"
 | |
|          beStrictAboutChangesToGlobalState="true"
 | |
|          printerClass="\Drupal\Tests\Listeners\HtmlOutputPrinter">
 | |
|   <php>
 | |
|     <!-- Set error reporting to E_ALL. -->
 | |
|     <ini name="error_reporting" value="32767"/>
 | |
|     <ini name="memory_limit" value="-1"/>
 | |
|     <env name="SIMPLETEST_BASE_URL" value="http://localhost:8000"/>
 | |
|     <env name="SIMPLETEST_DB" value="sqlite://localhost//tmp/test.sqlite"/>
 | |
|     <env name="BROWSERTEST_OUTPUT_DIRECTORY" value=""/>
 | |
|     <env name="BROWSERTEST_OUTPUT_BASE_URL" value=""/>
 | |
|     <env name="MINK_DRIVER_CLASS" value=''/>
 | |
|     <env name="MINK_DRIVER_ARGS" value=''/>
 | |
|     <env name="MINK_DRIVER_ARGS_PHANTOMJS" value=''/>
 | |
|     <env name="MINK_DRIVER_ARGS_WEBDRIVER" value=''/>
 | |
|   </php>
 | |
|   <testsuites>
 | |
|     <testsuite name="unit">
 | |
|       <file>./tests/TestSuites/UnitTestSuite.php</file>
 | |
|     </testsuite>
 | |
|     <testsuite name="kernel">
 | |
|       <file>./tests/TestSuites/KernelTestSuite.php</file>
 | |
|     </testsuite>
 | |
|     <testsuite name="functional">
 | |
|       <file>./tests/TestSuites/FunctionalTestSuite.php</file>
 | |
|     </testsuite>
 | |
|     <testsuite name="functional-javascript">
 | |
|       <file>./tests/TestSuites/FunctionalJavascriptTestSuite.php</file>
 | |
|     </testsuite>
 | |
|     <testsuite name="build">
 | |
|       <file>./tests/TestSuites/BuildTestSuite.php</file>
 | |
|     </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. -->
 | |
|   <filter>
 | |
|     <whitelist>
 | |
|       <directory>./includes</directory>
 | |
|       <directory>./lib</directory>
 | |
|       <!-- Extensions can have their own test directories, so exclude those. -->
 | |
|       <directory>./modules</directory>
 | |
|       <exclude>
 | |
|         <directory>./modules/*/src/Tests</directory>
 | |
|         <directory>./modules/*/tests</directory>
 | |
|       </exclude>
 | |
|       <directory>../modules</directory>
 | |
|       <exclude>
 | |
|         <directory>../modules/*/src/Tests</directory>
 | |
|         <directory>../modules/*/tests</directory>
 | |
|         <directory>../modules/*/*/src/Tests</directory>
 | |
|         <directory>../modules/*/*/tests</directory>
 | |
|       </exclude>
 | |
|       <directory>../sites</directory>
 | |
|      </whitelist>
 | |
|   </filter>
 | |
| </phpunit>
 |