You are here

public static function ApplicationTest::setUpBeforeClass in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/console/Tests/ApplicationTest.php \Symfony\Component\Console\Tests\ApplicationTest::setUpBeforeClass()

File

vendor/symfony/console/Tests/ApplicationTest.php, line 37

Class

ApplicationTest

Namespace

Symfony\Component\Console\Tests

Code

public static function setUpBeforeClass() {
  self::$fixturesPath = realpath(__DIR__ . '/Fixtures/');
  require_once self::$fixturesPath . '/FooCommand.php';
  require_once self::$fixturesPath . '/Foo1Command.php';
  require_once self::$fixturesPath . '/Foo2Command.php';
  require_once self::$fixturesPath . '/Foo3Command.php';
  require_once self::$fixturesPath . '/Foo4Command.php';
  require_once self::$fixturesPath . '/Foo5Command.php';
  require_once self::$fixturesPath . '/FoobarCommand.php';
  require_once self::$fixturesPath . '/BarBucCommand.php';
  require_once self::$fixturesPath . '/FooSubnamespaced1Command.php';
  require_once self::$fixturesPath . '/FooSubnamespaced2Command.php';
}