You are here

public static function PhpUnitTestRunner::create in Drupal 8

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/Test/PhpUnitTestRunner.php \Drupal\Core\Test\PhpUnitTestRunner::create()

Instantiates a new instance of this class.

This is a factory method that returns a new instance of this class. The factory should pass any needed dependencies into the constructor of this class, but not the container itself. Every call to this method must return a new instance of this class; that is, it may not implement a singleton.

Parameters

\Symfony\Component\DependencyInjection\ContainerInterface $container: The service container this instance should use.

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'));
}