You are here

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

Tests that the correct InvalidArgumentException is thrown for getScope().

@covers ::getServiceDefinition

@expectedException \Symfony\Component\DependencyInjection\Exception\InvalidArgumentException

File

core/tests/Drupal/Tests/Component/DependencyInjection/Dumper/OptimizedPhpArrayDumperTest.php, line 478
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 testGetServiceDefinitionWithInvalidScope() {
  $bar_definition = new Definition('\\stdClass');
  $bar_definition
    ->setScope('foo_scope');
  $services['bar'] = $bar_definition;
  $this->containerBuilder
    ->getDefinitions()
    ->willReturn($services);
  $this->dumper
    ->getArray();
}