I am trying to capture the output of PHPUnit:
$pu_result = new \PHPUnit_Framework_TestResult(); $pu_result->addListener(new \PHPUnit_Util_Log_JSON()); $pu_suite = new \PHPUnit_Framework_TestSuite();
this gives me a json encoded string like $ output (bad json btw, but I can fix it).
The problem is that the "message" property for incomplete and missed tests is "Missed test" or "Incomplete test" and does not contain the message that I indicated in calls to $this->markTestIncomplete() or $this->markTestSkipped() : (
Can I get this too?
source share