You are here

class PhpFileLoaderTest in Zircon Profile 8.0

Same name in this branch
  1. 8.0 vendor/symfony/routing/Tests/Loader/PhpFileLoaderTest.php \Symfony\Component\Routing\Tests\Loader\PhpFileLoaderTest
  2. 8.0 vendor/symfony/translation/Tests/Loader/PhpFileLoaderTest.php \Symfony\Component\Translation\Tests\Loader\PhpFileLoaderTest
  3. 8.0 vendor/symfony/dependency-injection/Tests/Loader/PhpFileLoaderTest.php \Symfony\Component\DependencyInjection\Tests\Loader\PhpFileLoaderTest
Same name and namespace in other branches
  1. 8 vendor/symfony/dependency-injection/Tests/Loader/PhpFileLoaderTest.php \Symfony\Component\DependencyInjection\Tests\Loader\PhpFileLoaderTest

Hierarchy

  • class \Symfony\Component\DependencyInjection\Tests\Loader\PhpFileLoaderTest extends \Symfony\Component\DependencyInjection\Tests\Loader\PHPUnit_Framework_TestCase

Expanded class hierarchy of PhpFileLoaderTest

File

vendor/symfony/dependency-injection/Tests/Loader/PhpFileLoaderTest.php, line 18

Namespace

Symfony\Component\DependencyInjection\Tests\Loader
View source
class PhpFileLoaderTest extends \PHPUnit_Framework_TestCase {

  /**
   * @covers Symfony\Component\DependencyInjection\Loader\PhpFileLoader::supports
   */
  public function testSupports() {
    $loader = new PhpFileLoader(new ContainerBuilder(), new FileLocator());
    $this
      ->assertTrue($loader
      ->supports('foo.php'), '->supports() returns true if the resource is loadable');
    $this
      ->assertFalse($loader
      ->supports('foo.foo'), '->supports() returns true if the resource is loadable');
  }

  /**
   * @covers Symfony\Component\DependencyInjection\Loader\PhpFileLoader::load
   */
  public function testLoad() {
    $loader = new PhpFileLoader($container = new ContainerBuilder(), new FileLocator());
    $loader
      ->load(__DIR__ . '/../Fixtures/php/simple.php');
    $this
      ->assertEquals('foo', $container
      ->getParameter('foo'), '->load() loads a PHP file resource');
  }

}

Members