Beispiel #1
0
 /**
  * @test
  *
  * @group entity
  * @group post-entity
  */
 public function testPostInit()
 {
     $post = new Post();
     $this->assertNotNull($post->getCreated());
     $this->assertNull($post->getDeleted());
     $this->assertNotNull($post->getLikes());
 }