public function testPersistWithoutPersister()
 {
     $this->setExpectedException('InvalidArgumentException');
     $registry = new Registry();
     $registry->append(new \stdClass());
     $registry->persist();
 }