Gush\Tests\Command\Issue\IssueShowCommandTest::it_shows_issue_with_number_from_branch PHP Метод

it_shows_issue_with_number_from_branch() публичный Метод

    public function it_shows_issue_with_number_from_branch()
    {
        $command = new IssueShowCommand();
        $tester = $this->getCommandTester($command, null, null, function (HelperSet $helperSet) {
            $helperSet->set($this->getLocalGitHelper()->reveal());
        });
        $tester->execute();
        $this->assertCommandOutputMatches(['Issue #60 - Write a behat test to launch strategy by weaverryan [open]', 'Org/Repo: gushphp/gush', 'Link: https://github.com/gushphp/gush/issues/60', 'Labels: actionable, easy pick', 'Milestone: v1.0', 'Assignee: cordoval', 'Help me conquer the world. Teach them to use Gush.'], $tester->getDisplay());
    }