public function IniFileLoaderTest::testSupports

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

File

drupal/core/vendor/symfony/dependency-injection/Symfony/Component/DependencyInjection/Tests/Loader/IniFileLoaderTest.php, line 83

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');
}