Neos\Flow\Tests\Functional\Persistence\PersistenceTest::entitiesArePersistedAndReconstituted PHP Method

entitiesArePersistedAndReconstituted() public method

    public function entitiesArePersistedAndReconstituted()
    {
        $this->removeExampleEntities();
        $this->insertExampleEntity();
        $testEntity = $this->testEntityRepository->findAll()->getFirst();
        $this->assertEquals('Flow', $testEntity->getName());
    }
PersistenceTest