protected function IniFileLoaderTest::setUp

File

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

Class

IniFileLoaderTest

Namespace

Symfony\Component\DependencyInjection\Tests\Loader

Code

protected function setUp() {
  if (!class_exists('Symfony\\Component\\Config\\Loader\\Loader')) {
    $this
      ->markTestSkipped('The "Config" component is not available');
  }
  $this->container = new ContainerBuilder();
  $this->loader = new IniFileLoader($this->container, new FileLocator(self::$fixturesPath . '/ini'));
}