function ControllerResolverTest::testCreateControllerInvalidName

Tests createController() with an invalid name.

File

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

Class

ControllerResolverTest
Tests Drupal\Core\Controller\ControllerResolver.

Namespace

Drupal\Tests\Core\Controller

Code

public function testCreateControllerInvalidName() : void {
  $this->expectException(\LogicException::class);
  $this->controllerResolver
    ->getControllerFromDefinition('ClassWithoutMethod');
}

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