You are here

public function ResolveParameterPlaceHoldersPassTest::testMethodCallParametersShouldBeResolved in Zircon Profile 8.0

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

File

vendor/symfony/dependency-injection/Tests/Compiler/ResolveParameterPlaceHoldersPassTest.php, line 46

Class

ResolveParameterPlaceHoldersPassTest

Namespace

Symfony\Component\DependencyInjection\Tests\Compiler

Code

public function testMethodCallParametersShouldBeResolved() {
  $this
    ->assertSame(array(
    array(
      'foobar',
      array(
        'bar',
        'baz',
      ),
    ),
  ), $this->fooDefinition
    ->getMethodCalls());
}