You are here

public function KernelTest::testLocateResourceReturnsTheFirstThatMatches in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-kernel/Tests/KernelTest.php \Symfony\Component\HttpKernel\Tests\KernelTest::testLocateResourceReturnsTheFirstThatMatches()

File

vendor/symfony/http-kernel/Tests/KernelTest.php, line 428

Class

KernelTest

Namespace

Symfony\Component\HttpKernel\Tests

Code

public function testLocateResourceReturnsTheFirstThatMatches() {
  $kernel = $this
    ->getKernel(array(
    'getBundle',
  ));
  $kernel
    ->expects($this
    ->once())
    ->method('getBundle')
    ->will($this
    ->returnValue(array(
    $this
      ->getBundle(__DIR__ . '/Fixtures/Bundle1Bundle'),
  )));
  $this
    ->assertEquals(__DIR__ . '/Fixtures/Bundle1Bundle/foo.txt', $kernel
    ->locateResource('@Bundle1Bundle/foo.txt'));
}