Пример #1
0
 public function testPersistence()
 {
     $entity = new Collection();
     $entity->setName('test collection');
     $this->assertNull($entity->getId());
     $this->em->persist($entity);
     $this->em->flush();
     $this->assertNotNull($entity->getId());
 }