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