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

testGithubCreateRepo() public method

test testGithubCreateRepo command.
    public function testGithubCreateRepo()
    {
        $application = new Application();
        $application->add(new GithubRepoCommand(new GithubAPI(new Filesystem()), new LlumRCParser(new LlumRCFile())));
        $command = $application->find('github:repo');
        $commandTester = new CommandTester($command);
        $commandTester->execute(['command' => $command->getName()]);
        var_dump($commandTester->getDisplay());
    }