public function testBuildOverridingDefaultPhingOtions()
 {
     $serviceOptions = new ServiceOptions();
     $phingOptions = new PhingOptions();
     $phingOptions->isVerbose(true);
     $service = new PhingService($serviceOptions, $phingOptions);
     $result = $service->build('show-defaults dist', array('build_file' => './test/PhingServiceTest/_assets/build-example.xml', 'verbose' => false));
     $this->assertNotContains('-verbose', $result->getCommandLine());
 }