public function testArgumentsArrayLogFile()
 {
     $options = new PhingOptions();
     $options->setLogFile('foo');
     $this->assertEquals(array('-logfile', 'foo'), $options->toArgumentsArray());
 }