public function testArgumentsProperties()
 {
     $options = new PhingOptions();
     $options->setProperties(array('foo' => 'bar'));
     $this->assertEquals(array('-Dfoo=bar'), $options->toArgumentsArray());
 }