public function testSetAndGetProjectPublished()
 {
     $project = new Project();
     $this->assertTrue($project->isPublished());
     $project->setPublished(false);
     $this->assertFalse($project->isPublished());
 }