public function testSave()
 {
     $name = 'Test Category';
     $category = new Category();
     $category->setName($name);
     $category->setCategoryGroup_id($this->testGroupId);
     $category->setDepartment_id($this->testDepartmentId);
     $category->save();
     $this->assertEquals($category->getName(), $name);
     $this->assertEquals($category->getCategoryGroup_id(), $this->testGroupId);
     $this->assertEquals($category->getDepartment_id(), $this->testDepartmentId);
 }