/**
  * When decrypting a field that can not match, we should get our unaltered input back
  */
 public function testDecryptionUnencrypted()
 {
     $unencrypted = 'myvisiblepassword';
     $this->assertEquals($unencrypted, $this->unmaskedType->loadValue($unencrypted, false, 'f1', array('f2' => null)));
 }