Neos\ContentRepository\Tests\Behavior\Features\Bootstrap\NodeOperationsTrait::iRunGetNodeWithThePathOnTheCurrentNode PHP Method

iRunGetNodeWithThePathOnTheCurrentNode() public method

    public function iRunGetNodeWithThePathOnTheCurrentNode($path)
    {
        if ($this->isolated === true) {
            $this->callStepInSubProcess(__METHOD__);
        } else {
            $node = $this->iShouldHaveOneNode();
            $retrievedNode = $node->getNode($path);
            $this->currentNodes = $retrievedNode ? [$retrievedNode] : [];
        }
    }