public function testIgnoresEmptyIds()
 {
     $recorder = new SentryEventRecorder();
     $exception = new \Exception();
     $recorder->addExceptionEventId($exception, '');
     $this->assertEquals(null, $recorder->getEventIdForException($exception));
 }