Gittern\Entity\GitObject\CommitTest::testCanGetAndSetAuthorTime PHP Méthode

testCanGetAndSetAuthorTime() public méthode

    public function testCanGetAndSetAuthorTime()
    {
        $time = new \DateTime();
        $this->commit->setAuthorTime($time);
        $this->assertEquals($time, $this->commit->getAuthorTime());
    }