We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e38bad8 + 257a628 commit d46b2daCopy full SHA for d46b2da
tests/BaseKernelTestCase.php
@@ -8,7 +8,6 @@
8
use Doctrine\ORM\Tools\SchemaTool;
9
use Meilisearch\Bundle\Collection;
10
use Meilisearch\Bundle\SearchService;
11
-use Meilisearch\Bundle\Tests\Entity\Post;
12
use Meilisearch\Client;
13
use Meilisearch\Exceptions\ApiException;
14
use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase;
@@ -35,16 +34,6 @@ protected function setUp(): void
35
34
$this->cleanUp();
36
}
37
38
- protected function createPost(): Post
39
- {
40
- $post = new Post('Test Post', 'Test content post');
41
-
42
- $this->entityManager->persist($post);
43
- $this->entityManager->flush();
44
45
- return $post;
46
- }
47
48
protected function getPrefix(): string
49
{
50
return $this->searchService->getConfiguration()->get('prefix');
0 commit comments