예제 #1
0
파일: PostTest.php 프로젝트: cobase/cobase
 /**
  * @test
  *
  * @group entity
  * @group post-entity
  */
 public function testPostInit()
 {
     $post = new Post();
     $this->assertNotNull($post->getCreated());
     $this->assertNull($post->getDeleted());
     $this->assertNotNull($post->getLikes());
 }