You are here

public function ContainerTest::testGetParameterBag in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/dependency-injection/Tests/ContainerTest.php \Symfony\Component\DependencyInjection\Tests\ContainerTest::testGetParameterBag()

@covers Symfony\Component\DependencyInjection\Container::getParameterBag

File

vendor/symfony/dependency-injection/Tests/ContainerTest.php, line 105

Class

ContainerTest

Namespace

Symfony\Component\DependencyInjection\Tests

Code

public function testGetParameterBag() {
  $sc = new Container();
  $this
    ->assertEquals(array(), $sc
    ->getParameterBag()
    ->all(), '->getParameterBag() returns an empty array if no parameter has been defined');
}