Acacha\Llum\Tests\GithubCommandTest::testGithubInitRepo PHP Method

testGithubInitRepo() public method

test testGithubInitRepo command.
public testGithubInitRepo ( )
    public function testGithubInitRepo()
    {
        $application = new Application();
        $application->add(new GithubInitCommand());
        $command = $application->find('github:init');
        $commandTester = new CommandTester($command);
        $commandTester->execute(['command' => $command->getName()]);
        var_dump($commandTester->getDisplay());
    }