Gittern\Entity\GitObject\CommitTest::testCanGetAndSetAuthor PHP Method

testCanGetAndSetAuthor() public method

    public function testCanGetAndSetAuthor()
    {
        $user_mock = M::mock('Gittern\\Entity\\GitObject\\User');
        $this->commit->setAuthor($user_mock);
        $this->assertEquals($user_mock, $this->commit->getAuthor());
    }