When running a PHPUnit test, I would like to be able to dump output so I can debug one or two things.
I have tried the following (similar to the PHPUnit Manual examp
PHPUnit is hiding the output with ob_start(). We can disable it temporarily.
ob_start()
public function log($something = null) { ob_end_clean(); var_dump($something); ob_start(); }