public function testPaketEqualsSpecification()
 {
     /** @var Exception $exception */
     $exception = new Exception();
     $exception->setExceptionDescription('Test Description');
     $exception->setExceptionFatal(true);
     $packet = $exception->getPackage();
     $this->assertEquals(array('t' => 'exception', 'exd' => 'Test Description', 'exf' => '1'), $packet);
 }