Ejemplo n.º 1
0
 /**
  * @expectedException Respect\Validation\Exceptions\ZendException
  */
 public function testSimpleNot()
 {
     $v = new Zend('alnum');
     $this->assertFalse($v->validate('#$%#$%'));
     $this->assertFalse($v->assert('#$%#$%'));
 }