public function ContainerTest::testResolveServicesAndParametersForOptionalServiceDependencies in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/tests/Drupal/Tests/Component/DependencyInjection/ContainerTest.php \Drupal\Tests\Component\DependencyInjection\ContainerTest::testResolveServicesAndParametersForOptionalServiceDependencies()
Tests that services that are optional work correctly.
@covers ::get @covers ::createService @covers ::resolveServicesAndParameters
File
- core/tests/ Drupal/ Tests/ Component/ DependencyInjection/ ContainerTest.php, line 584 
- Contains \Drupal\Tests\Component\DependencyInjection\ContainerTest.
Class
- ContainerTest
- @coversDefaultClass \Drupal\Component\DependencyInjection\Container @group DependencyInjection
Namespace
Drupal\Tests\Component\DependencyInjectionCode
public function testResolveServicesAndParametersForOptionalServiceDependencies() {
  $service = $this->container
    ->get('service_with_optional_dependency');
  $this
    ->assertNull($service
    ->getSomeOtherService(), 'other service was NULL was expected.');
}