You are here

public function OptimizedPhpArrayDumperTest::testGetServiceDefinitionForResource 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::testGetServiceDefinitionForResource()

Tests that the correct RuntimeException is thrown for dumping a resource.

@covers ::dumpValue

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

File

core/tests/Drupal/Tests/Component/DependencyInjection/Dumper/OptimizedPhpArrayDumperTest.php, line 549
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 testGetServiceDefinitionForResource() {
  $resource = fopen('php://memory', 'r');
  $bar_definition = new Definition('\\stdClass');
  $bar_definition
    ->addArgument($resource);
  $services['bar'] = $bar_definition;
  $this->containerBuilder
    ->getDefinitions()
    ->willReturn($services);
  $this->dumper
    ->getArray();
}