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

setUp() public method

public setUp ( ) : void
return void
    public function setUp()
    {
        parent::setUp();
        if (!$this->persistenceManager instanceof PersistenceManager) {
            $this->markTestSkipped('Doctrine persistence is not enabled');
        }
        $this->testEntityRepository = new Fixtures\TestEntityRepository();
        $this->extendedTypesEntityRepository = new Fixtures\ExtendedTypesEntityRepository();
    }
PersistenceTest