spec\Prophecy\Doubler\Generator\Node\ClassNodeSpec::it_is_able_to_have_properties PHP Метод

it_is_able_to_have_properties() публичный Метод

    function it_is_able_to_have_properties()
    {
        $this->addProperty('title');
        $this->addProperty('text', 'private');
        $this->getProperties()->shouldReturn(array('title' => 'public', 'text' => 'private'));
    }