public function testComments()
 {
     $comments = rand();
     $profileDetails = new ProfileDetails();
     $profileDetails->setComments($comments);
     $this->assertEquals($comments, $profileDetails->getComments());
 }