Carew\Tests\Command\BuildTest::runApplication PHP Method

runApplication() private method

private runApplication ( $fixturesPath )
    private function runApplication($fixturesPath)
    {
        $carew = new Carew();
        $carew->setAutoExit(false);
        $application = new ApplicationTester($carew);
        $input = array('command' => 'build', '--base-dir' => $fixturesPath, '--web-dir' => $fixturesPath . '/web', '--verbose' => true);
        $application->run($input);
        return $application;
    }