public function ContainerTest::testUnknownService in Little helpers 7.2
Test loading an unknown service without exception.
File
- tests/
Services/ ContainerTest.php, line 105
Class
- ContainerTest
- Test the service container.
Namespace
Drupal\little_helpers\ServicesCode
public function testUnknownService() {
$container = new Container();
$this
->assertFalse($container
->loadService('unknown', FALSE));
}