Neos\Media\Tests\Functional\Domain\Repository\TagRepositoryTest::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->tagRepository = $this->objectManager->get(TagRepository::class);
    }