/**
     * @return void
     */
    protected function configure()
    {
        if (null === ($atoumPath = \sfConfig::get('sf_atoum_path'))) {
            $atoumPath = dirname(__FILE__) . '/../../../../lib/vendor/atoum/';
        }
        require_once $atoumPath . '/classes/autoloader.php';
        $this->namespace = 'atoum';
        $this->name = 'test';
        $this->briefDescription = '';
        $this->detailedDescription = <<<EOF
EOF;
        $runner = new scripts\runner(__FILE__);
        $builder = new \sfAtoumPlugin\arguments\builder($runner->getHelp());
        $builder->setDefaultTypes($this->getDefaultTypes())->setDefaultOptions($this->getDefaultArguments());
        $this->addOptions($builder->getSfOptions());
    }