getEntityManager(); $repo = self::getContainer()->get(SequenceRepository::class); $item = (new Sequence()) ->setName('session 1') ->setGraph('') ; $this->assertHasNoEntityViolations($item); $em->persist($item); $em->flush(); $this->assertSame(1, $repo->count([])); } }