public function testDecryptWihoutPadding() { $this->mcrypt->setKey($this->key); $this->setExpectedException('Zend\Crypt\Symmetric\Exception\InvalidArgumentException', 'You have to specify a padding method'); $this->mcrypt->decrypt($this->plaintext); }
public function testDecryptWithoutKey() { $this->setExpectedException('Zend\\Crypt\\Symmetric\\Exception\\InvalidArgumentException'); $this->mcrypt->decrypt($this->plaintext); }