Gitonomy\Git\Tests\CommitTest::testGetIncludingBranches PHP Method

testGetIncludingBranches() public method

public testGetIncludingBranches ( $repository )
    public function testGetIncludingBranches($repository)
    {
        $commit = $repository->getCommit(self::INITIAL_COMMIT);
        $branches = $commit->getIncludingBranches(true, false);
        $this->assertCount(count($repository->getReferences()->getLocalBranches()), $branches);
        $branches = $commit->getIncludingBranches(true, true);
        $this->assertCount(count($repository->getReferences()->getBranches()), $branches);
        $branches = $commit->getIncludingBranches(false, true);
        $this->assertCount(count($repository->getReferences()->getRemoteBranches()), $branches);
    }