/**
  * Test an empty Genre entity
  */
 public function testEmptyGenre()
 {
     $genre = new Genre();
     $this->assertNull($genre->getId());
     $this->assertNull($genre->getName());
     $this->assertNull($genre->getCreatedBy());
     $this->assertNull($genre->getUpdatedBy());
     $this->assertNull($genre->getSlug());
 }