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

iShouldHaveANodeWithPathAndValueForPropertyForTheFollowingContext() public method

public iShouldHaveANodeWithPathAndValueForPropertyForTheFollowingContext ( $path, $propertyValue, $propertyName, $table )
    public function iShouldHaveANodeWithPathAndValueForPropertyForTheFollowingContext($path, $propertyValue, $propertyName, $table)
    {
        if ($this->isolated === true) {
            $this->callStepInSubProcess(__METHOD__, sprintf(' %s %s %s %s %s %s %s %s', 'string', escapeshellarg($path), 'string', escapeshellarg($propertyValue), 'string', escapeshellarg($propertyName), escapeshellarg(\Neos\Flow\Tests\Functional\Command\TableNode::class), escapeshellarg(json_encode($table->getHash()))));
        } else {
            $this->iGetANodeByPathWithTheFollowingContext($path, $table);
            $this->theNodePropertyShouldBe($propertyName, $propertyValue);
        }
    }