setUpDb([LoadBaseData::class]); $this->repository = $this->em->getRepository(Keyword::class); } public function testGetOrCreate() { $this->assertCount(0, $this->repository->findAll()); $keyword = $this->repository->getOrCreate('Keyword'); $this->repository->save($keyword); $this->assertCount(1, $this->repository->findAll()); $keyword = $this->repository->getOrCreate('Keyword'); $this->repository->save($keyword); $this->assertCount(1, $this->repository->findAll()); } }