/**
  * @return Config
  */
 public function generate()
 {
     $default = Config::defaultConfig();
     $phpunit_path = $this->findPhpunit();
     if ($phpunit_path) {
         $default['phpunit'] = $phpunit_path;
     }
     return $default;
 }