Neos\Flow\Tests\Functional\Persistence\Doctrine\AggregateTest::setUp PHP Méthode

setUp() public méthode

public setUp ( ) : void
Résultat void
    public function setUp()
    {
        parent::setUp();
        if (!$this->persistenceManager instanceof PersistenceManager) {
            $this->markTestSkipped('Doctrine persistence is not enabled');
        }
        $this->postRepository = $this->objectManager->get(Fixtures\PostRepository::class);
        $this->commentRepository = $this->objectManager->get(Fixtures\CommentRepository::class);
    }