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

testCanGetAndSetCommitTime() public method

    public function testCanGetAndSetCommitTime()
    {
        $time = new \DateTime();
        $this->commit->setCommitTime($time);
        $this->assertEquals($time, $this->commit->getCommitTime());
    }