%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/html/car_rent/vendor/phpspec/phpspec/src/PhpSpec/Formatter/Html/
Upload File :
Create Path :
Current File : /var/www/html/car_rent/vendor/phpspec/phpspec/src/PhpSpec/Formatter/Html/ReportPendingItem.php

<?php

/*
 * This file is part of PhpSpec, A php toolset to drive emergent
 * design by specification.
 *
 * (c) Marcello Duarte <marcello.duarte@gmail.com>
 * (c) Konstantin Kudryashov <ever.zet@gmail.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace PhpSpec\Formatter\Html;

use PhpSpec\Event\ExampleEvent;
use PhpSpec\Formatter\Template as TemplateInterface;

class ReportPendingItem
{
    /**
     * @var TemplateInterface
     */
    private $template;
    /**
     * @var ExampleEvent
     */
    private $event;
    /**
     * @var int
     */
    private static $pendingExamplesCount = 1;

    /**
     * @param TemplateInterface $template
     * @param ExampleEvent      $event
     */
    public function __construct(TemplateInterface $template, ExampleEvent $event)
    {
        $this->template = $template;
        $this->event = $event;
    }

    /**
     *
     */
    public function write()
    {
        $this->template->render(Template::DIR.'/Template/ReportPending.html', array(
            'title' => $this->event->getTitle(),
            'pendingExamplesCount' => self::$pendingExamplesCount
        ));
        self::$pendingExamplesCount++;
    }
}

Zerion Mini Shell 1.0