public static function ApplicationTest::setUpBeforeClass in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/console/Tests/ApplicationTest.php \Symfony\Component\Console\Tests\ApplicationTest::setUpBeforeClass()
File
- vendor/
symfony/ console/ Tests/ ApplicationTest.php, line 37
Class
Namespace
Symfony\Component\Console\TestsCode
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';
}