You are here

public function PhpDumperTest::testOverrideServiceWhenUsingADumpedContainerAndServiceIsUsedFromAnotherOne in Service Container 7.2

Same name and namespace in other branches
  1. 7 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Dumper/PhpDumperTest.php \Symfony\Component\DependencyInjection\Tests\Dumper\PhpDumperTest::testOverrideServiceWhenUsingADumpedContainerAndServiceIsUsedFromAnotherOne()

File

modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/Tests/Dumper/PhpDumperTest.php, line 197

Class

PhpDumperTest

Namespace

Symfony\Component\DependencyInjection\Tests\Dumper

Code

public function testOverrideServiceWhenUsingADumpedContainerAndServiceIsUsedFromAnotherOne() {
  require_once self::$fixturesPath . '/php/services9.php';
  require_once self::$fixturesPath . '/includes/foo.php';
  require_once self::$fixturesPath . '/includes/classes.php';
  $container = new \ProjectServiceContainer();
  $container
    ->set('bar', $bar = new \stdClass());
  $this
    ->assertSame($bar, $container
    ->get('foo')->bar, '->set() overrides an already defined service');
}