function ControllerResolverTest::testGetControllerFromDefinitionNotCallable

Same name in other branches
  1. 9 core/tests/Drupal/Tests/Core/Controller/ControllerResolverTest.php \Drupal\Tests\Core\Controller\ControllerResolverTest::testGetControllerFromDefinitionNotCallable()
  2. 10 core/tests/Drupal/Tests/Core/Controller/ControllerResolverTest.php \Drupal\Tests\Core\Controller\ControllerResolverTest::testGetControllerFromDefinitionNotCallable()
  3. 11.x core/tests/Drupal/Tests/Core/Controller/ControllerResolverTest.php \Drupal\Tests\Core\Controller\ControllerResolverTest::testGetControllerFromDefinitionNotCallable()

Tests getControllerFromDefinition() without a callable.

File

core/tests/Drupal/Tests/Core/Controller/ControllerResolverTest.php, line 205

Class

ControllerResolverTest
@coversDefaultClass \Drupal\Core\Controller\ControllerResolver @group Controller

Namespace

Drupal\Tests\Core\Controller

Code

public function testGetControllerFromDefinitionNotCallable() {
    $this->expectException(\InvalidArgumentException::class);
    $this->controllerResolver
        ->getControllerFromDefinition('Drupal\\Tests\\Core\\Controller\\MockController::bananas');
}

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