Neos\ContentRepository\Tests\Unit\Domain\Model\NodeDataTest::theIndexCanBeSetAndRetrieved PHP Метод

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

    public function theIndexCanBeSetAndRetrieved()
    {
        $this->nodeData->setIndex(2);
        $this->assertEquals(2, $this->nodeData->getIndex());
    }
NodeDataTest