public function testEducation()
 {
     $education = new education();
     $education->setCategory("College");
     $education->setSchool("ICEHS");
     $education->setYrGrad("2012");
     echo "\n" . $education->getCategory() . "\n";
     echo $education->getSchool() . "\n";
     echo $education->getYrGrad() . "\n";
     $this->assertTrue(true);
 }