You are here

public function PhpDumperTest::testAddParameters in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/dependency-injection/Tests/Dumper/PhpDumperTest.php \Symfony\Component\DependencyInjection\Tests\Dumper\PhpDumperTest::testAddParameters()

File

vendor/symfony/dependency-injection/Tests/Dumper/PhpDumperTest.php, line 96

Class

PhpDumperTest

Namespace

Symfony\Component\DependencyInjection\Tests\Dumper

Code

public function testAddParameters() {
  $container = (include self::$fixturesPath . '/containers/container8.php');
  $dumper = new PhpDumper($container);
  $this
    ->assertStringEqualsFile(self::$fixturesPath . '/php/services8.php', $dumper
    ->dump(), '->dump() dumps parameters');
}