class PhpFileLoaderTest in Service Container 7
Same name and namespace in other branches
- 7.2 modules/providers/service_container_symfony/lib/Symfony/Component/DependencyInjection/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
- modules/
providers/ service_container_symfony/ lib/ Symfony/ Component/ DependencyInjection/ Tests/ Loader/ PhpFileLoaderTest.php, line 18
Namespace
Symfony\Component\DependencyInjection\Tests\LoaderView 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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
PhpFileLoaderTest:: |
public | function | @covers Symfony\Component\DependencyInjection\Loader\PhpFileLoader::load | |
PhpFileLoaderTest:: |
public | function | @covers Symfony\Component\DependencyInjection\Loader\PhpFileLoader::supports |