public function testPrintHtml()
 {
     $e = new \Exception('err', 32, new \Exception('inner', 1));
     $betterEx = new Exception($e);
     $out = BetterError::printHtml($betterEx);
     $this->assertTrue(is_string($out));
 }