Neos\ContentRepository\Tests\Behavior\Features\Bootstrap\NodeOperationsTrait::iShouldHaveNodes PHP Метод

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

public iShouldHaveNodes ( $count )
    public function iShouldHaveNodes($count)
    {
        if ($this->isolated === true) {
            $this->callStepInSubProcess(__METHOD__, sprintf(' %s %s', 'integer', escapeshellarg($count)));
        } else {
            Assert::assertCount((int) $count, $this->currentNodes);
        }
    }