public function testEncryptorCanBeSet()
 {
     $encryptor = 'Some\\Encryptor\\Class';
     $this->assertNull($this->options->getEncryptor());
     $this->options->setEncryptor($encryptor);
     $this->assertEquals($encryptor, $this->options->getEncryptor());
 }