You are here

public function OptimizedPhpArrayDumperTest::testGetServiceDefinitionForObject in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/tests/Drupal/Tests/Component/DependencyInjection/Dumper/OptimizedPhpArrayDumperTest.php \Drupal\Tests\Component\DependencyInjection\Dumper\OptimizedPhpArrayDumperTest::testGetServiceDefinitionForObject()

Tests that the correct RuntimeException is thrown for dumping an object.

@covers ::dumpValue

@expectedException \Symfony\Component\DependencyInjection\Exception\RuntimeException

File

core/tests/Drupal/Tests/Component/DependencyInjection/Dumper/OptimizedPhpArrayDumperTest.php, line 531
Contains \Drupal\Tests\Component\DependencyInjection\Dumper\OptimizedPhpArrayDumperTest.

Class

OptimizedPhpArrayDumperTest
@coversDefaultClass \Drupal\Component\DependencyInjection\Dumper\OptimizedPhpArrayDumper @group DependencyInjection

Namespace

Drupal\Tests\Component\DependencyInjection\Dumper

Code

public function testGetServiceDefinitionForObject() {
  $service = new \stdClass();
  $bar_definition = new Definition('\\stdClass');
  $bar_definition
    ->addArgument($service);
  $services['bar'] = $bar_definition;
  $this->containerBuilder
    ->getDefinitions()
    ->willReturn($services);
  $this->dumper
    ->getArray();
}