public function testSetPhingBinToNull()
 {
     $reflectionClass = new \ReflectionClass('BsbPhingService\\Options\\ServiceOptions');
     $options = new ServiceOptions();
     $reflectionProperty = $reflectionClass->getProperty('phingBin');
     $reflectionProperty->setAccessible(true);
     $options->setPhingBin();
     $this->assertNull($reflectionProperty->getValue($options));
     $options->setPhingBin(null);
     $this->assertNull($reflectionProperty->getValue($options));
 }