public function testAbortingPersistence()
 {
     $comment = $this->getMock('FOS\\CommentBundle\\Model\\CommentInterface');
     $event = new CommentPersistEvent($comment);
     $this->assertFalse($event->isPersistenceAborted());
     $event->abortPersistence();
     $this->assertTrue($event->isPersistenceAborted());
 }