Esempio n. 1
0
 public function testSettingAndGettingLocale()
 {
     $validator = new Zend_Validate_Iban();
     try {
         $validator->setLocale('de_QA');
         $this->fail();
     } catch (Zend_Validate_Exception $e) {
         $this->assertContains('IBAN validation', $e->getMessage());
     }
     $validator->setLocale('de_DE');
     $this->assertEquals('de_DE', $validator->getLocale());
 }