public function testReviews()
 {
     $posts = rand();
     $profileDetails = new ProfileDetails();
     $profileDetails->setReviews($posts);
     $this->assertEquals($posts, $profileDetails->getReviews());
 }