You are here

public function ContainerTest::testUnknownServiceException in Little helpers 7.2

Test loading an unknown service.

File

tests/Services/ContainerTest.php, line 96

Class

ContainerTest
Test the service container.

Namespace

Drupal\little_helpers\Services

Code

public function testUnknownServiceException() {
  $container = new Container();
  $this
    ->expectException(UnknownServiceException::class);
  $container
    ->loadService('unknown');
}