You are here

public function OptimizedPhpArrayDumperTest::setUp 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::setUp()
1 call to OptimizedPhpArrayDumperTest::setUp()
PhpArrayDumperTest::setUp in core/tests/Drupal/Tests/Component/DependencyInjection/Dumper/PhpArrayDumperTest.php
1 method overrides OptimizedPhpArrayDumperTest::setUp()
PhpArrayDumperTest::setUp in core/tests/Drupal/Tests/Component/DependencyInjection/Dumper/PhpArrayDumperTest.php

File

core/tests/Drupal/Tests/Component/DependencyInjection/Dumper/OptimizedPhpArrayDumperTest.php, line 61
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 setUp() {

  // Setup a mock container builder.
  $this->containerBuilder = $this
    ->prophesize('\\Symfony\\Component\\DependencyInjection\\ContainerBuilder');
  $this->containerBuilder
    ->getAliases()
    ->willReturn(array());
  $this->containerBuilder
    ->getParameterBag()
    ->willReturn(new ParameterBag());
  $this->containerBuilder
    ->getDefinitions()
    ->willReturn(NULL);
  $this->containerBuilder
    ->isFrozen()
    ->willReturn(TRUE);
  $definition = array();
  $definition['aliases'] = array();
  $definition['parameters'] = array();
  $definition['services'] = array();
  $definition['frozen'] = TRUE;
  $definition['machine_format'] = $this->machineFormat;
  $this->containerDefinition = $definition;

  // Create the dumper.
  $this->dumper = new $this->dumperClass($this->containerBuilder
    ->reveal());
}