public function testSetOptions()
 {
     $this->resolver->setOptions(array('path' => '.', 'config' => 'config.php_cs'));
     $property = AccessibleObject::create($this->resolver)->options;
     $this->assertSame('.', $property['path']);
     $this->assertSame('config.php_cs', $property['config']);
 }