spec\PHPSpec2\Loader\Node\Specification::it_should_calculate_proper_depth_depending_on_parent PHP Method

it_should_calculate_proper_depth_depending_on_parent() public method

public it_should_calculate_proper_depth_depending_on_parent ( PHPSpec2\Loader\Node\Node $parent )
$parent PHPSpec2\Loader\Node\Node
    function it_should_calculate_proper_depth_depending_on_parent($parent)
    {
        $this->setParent($parent);
        $parent->getDepth()->willReturn(10);
        $this->getDepth()->shouldReturn(11);
    }