public function testSetAndGetProjectDescription()
 {
     $description = "Press-releases and reviews of the latest electronic novelties: mobile phones, cellphones, smartphones, laptops, tablets, netbooks, gadgets, e-books, photo and video cameras. The possibility to leave a pre-order.";
     $project = new Project();
     $project->setDescription($description);
     $this->assertEquals($project->getDescription(), $description);
 }