You are here

public function ContainerTest::testGettingContainerAsService in Little helpers 7.2

Test self registration as service.

File

tests/Services/ContainerTest.php, line 122

Class

ContainerTest
Test the service container.

Namespace

Drupal\little_helpers\Services

Code

public function testGettingContainerAsService() {
  $container = new Container();
  $this
    ->assertSame($container, $container
    ->loadService('container'));
}