function PhpUnitTestRunner::create

Same name in other branches
  1. 9 core/lib/Drupal/Core/Test/PhpUnitTestRunner.php \Drupal\Core\Test\PhpUnitTestRunner::create()
  2. 10 core/lib/Drupal/Core/Test/PhpUnitTestRunner.php \Drupal\Core\Test\PhpUnitTestRunner::create()
  3. 11.x core/lib/Drupal/Core/Test/PhpUnitTestRunner.php \Drupal\Core\Test\PhpUnitTestRunner::create()

Overrides ContainerInjectionInterface::create

7 calls to PhpUnitTestRunner::create()
SimpletestPhpunitRunCommandTest::testSimpletestPhpUnitRunCommand in core/modules/simpletest/tests/src/Unit/SimpletestPhpunitRunCommandTest.php
Test the round trip for PHPUnit execution status codes.
simpletest_phpunit_command in core/modules/simpletest/simpletest.module
Returns the command to run PHPUnit.
simpletest_phpunit_run_command in core/modules/simpletest/simpletest.module
Executes the PHPUnit command.
simpletest_phpunit_xml_filepath in core/modules/simpletest/simpletest.module
Returns the path to use for PHPUnit's --log-junit option.
simpletest_run_phpunit_tests in core/modules/simpletest/simpletest.module
Executes PHPUnit tests and returns the results of the run.

... See full list

File

core/lib/Drupal/Core/Test/PhpUnitTestRunner.php, line 45

Class

PhpUnitTestRunner
Run PHPUnit-based tests.

Namespace

Drupal\Core\Test

Code

public static function create(ContainerInterface $container) {
    return new static((string) $container->get('app.root'), (string) $container->get('file_system')
        ->realpath('public://simpletest'));
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.