Example #1
0
 /**
  * Format exception for string (CMD)
  * @param BaseTest $test
  * @param Exception $e
  * @return string
  */
 public function format(BaseTest $test, Exception $e)
 {
     $content = "TEST: " . get_class($test) . "" . PHP_EOL;
     $content .= \Tester\Dumper::dumpException($e);
     $content .= "-------------------------------------" . PHP_EOL;
     return $content;
 }