You are here

public static function TestRunnerKernel::createFromRequest in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Test/TestRunnerKernel.php \Drupal\Core\Test\TestRunnerKernel::createFromRequest()

Create a DrupalKernel object from a request.

Parameters

\Symfony\Component\HttpFoundation\Request $request: The request.

$class_loader: The class loader. Normally Composer's ClassLoader, as included by the front controller, but may also be decorated; e.g., \Symfony\Component\ClassLoader\ApcClassLoader.

string $environment: String indicating the environment, e.g. 'prod' or 'dev'.

bool $allow_dumping: (optional) FALSE to stop the container from being written to or read from disk. Defaults to TRUE.

Return value

static

Throws

\Symfony\Component\HttpKernel\Exception\BadRequestHttpException In case the host name in the request is not trusted.

Overrides DrupalKernel::createFromRequest

1 call to TestRunnerKernel::createFromRequest()
BrowserTestBase::prepareEnvironment in core/modules/simpletest/src/BrowserTestBase.php
Prepares the current environment for running the test.

File

core/lib/Drupal/Core/Test/TestRunnerKernel.php, line 23
Contains \Drupal\Core\Test\TestRunnerKernel.

Class

TestRunnerKernel
Kernel for run-tests.sh.

Namespace

Drupal\Core\Test

Code

public static function createFromRequest(Request $request, $class_loader, $environment = 'test_runner', $allow_dumping = TRUE) {
  return parent::createFromRequest($request, $class_loader, $environment);
}