public function testOpenidFileStoreOptionsGetSet()
 {
     $path = $this->path;
     $store = new ezcAuthenticationOpenidFileStore($path);
     $options = new ezcAuthenticationOpenidFileStoreOptions();
     $store->setOptions($options);
     $this->assertEquals($options, $store->getOptions());
 }