Esempio n. 1
0
 public function testFind()
 {
     $unit = $this->buildUnitOfWork();
     $this->repository->add($unit);
     $unitFromRepo = $this->repository->find(new Uid('persisting-test.mig'));
     static::assertEquals($unitFromRepo, $unit);
 }