public function testSetAndGetCategoryDescription()
 {
     $description = "Design can help you improve your sustainability credentials, create products and services that make people happy and it has positive benefits on business's bottom line.";
     $category = new Category();
     $category->setDescription($description);
     $this->assertEquals($description, $category->getDescription());
 }