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);
}