function ControllerResolverTest::providerTestGetController
Provides test data for testGetController().
File
-
core/
tests/ Drupal/ Tests/ Core/ Controller/ ControllerResolverTest.php, line 113
Class
Namespace
Drupal\Tests\Core\ControllerCode
public static function providerTestGetController() {
return [
// Tests passing a controller via the request.
[
[
RouteObjectInterface::CONTROLLER_NAME => MockContainerInjection::class . '::getResult',
],
MockContainerInjection::class,
'This used injection.',
],
// Tests a request with no controller specified.
[
[],
FALSE,
],
];
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.