Exemplo n.º 1
0
 public function testSetRating()
 {
     $ratingsRight = array('g', 'pg', 'r', 'x', Gravatar::RATING_R);
     foreach ($ratingsRight as $value) {
         $this->helper->setRating($value);
         $this->assertEquals($value, $this->helper->getRating());
     }
 }