getEntityManager(); $repo = self::getContainer()->get(BranchSyncRepository::class); $item = (new BranchSync()) ->setTitle('Branch') ->setAdminName('Julio') ; $this->assertHasNoEntityViolations($item); $em->persist($item); $em->flush(); // By default there's a root branch. $this->assertSame(2, $repo->count([])); } public function testSearchByKeyword(): void { $repo = self::getContainer()->get(BranchSyncRepository::class); $em = $this->getEntityManager(); $item = (new BranchSync()) ->setTitle('Branch') ->setAdminName('Julio') ; $this->assertHasNoEntityViolations($item); $em->persist($item); $em->flush(); $items = $repo->searchByKeyword('Branch'); $this->assertCount(1, $items); } }