Ejemplo n.º 1
0
 function test_getCountryName_uc()
 {
     $h = fbISO3166::getidtonamehash();
     foreach ($h as $id => $name) {
         $id = strtoupper($id);
         $rv = fbISO3166::getCountryName($id);
         $this->assertEquals($name, $rv, "id={$id}");
     }
 }