You are here

public function EnvParametersResourceTest::testGetResource in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 vendor/symfony/http-kernel/Tests/Config/EnvParametersResourceTest.php \Symfony\Component\HttpKernel\Tests\Config\EnvParametersResourceTest::testGetResource()

File

vendor/symfony/http-kernel/Tests/Config/EnvParametersResourceTest.php, line 45

Class

EnvParametersResourceTest

Namespace

Symfony\Component\HttpKernel\Tests\Config

Code

public function testGetResource() {
  $this
    ->assertSame(array(
    'prefix' => $this->prefix,
    'variables' => $this->initialEnv,
  ), $this->resource
    ->getResource(), '->getResource() returns the resource');
}