You are here

public function IniFileLoaderTest::testSupports in Zircon Profile 8

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

@covers Symfony\Component\DependencyInjection\Loader\IniFileLoader::supports

File

vendor/symfony/dependency-injection/Tests/Loader/IniFileLoaderTest.php, line 73

Class

IniFileLoaderTest

Namespace

Symfony\Component\DependencyInjection\Tests\Loader

Code

public function testSupports() {
  $loader = new IniFileLoader(new ContainerBuilder(), new FileLocator());
  $this
    ->assertTrue($loader
    ->supports('foo.ini'), '->supports() returns true if the resource is loadable');
  $this
    ->assertFalse($loader
    ->supports('foo.foo'), '->supports() returns true if the resource is loadable');
}