Exemplo n.º 1
0
 public function tesSetDefaultImg()
 {
     $this->helper->gravatar("*****@*****.**");
     $img = array("wavatar", "http://www.example.com/images/avatar/example.png", Gravatar::DEFAULT_MONSTERID);
     foreach ($img as $value) {
         $this->helper->setDefaultImg($value);
         $this->assertEquals(urlencode($value), $this->helper->getDefaultImg());
     }
 }