You are here

function simpletest_phpunit_configuration_filepath in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/simpletest/simpletest.module \simpletest_phpunit_configuration_filepath()

Returns the path to core's phpunit.xml.dist configuration file.

Return value

string The path to core's phpunit.xml.dist configuration file.

File

core/modules/simpletest/simpletest.module, line 245
Provides testing functionality.

Code

function simpletest_phpunit_configuration_filepath() {
  return \Drupal::root() . '/core/phpunit.xml.dist';
}