phpunit show progress during test code example
Example: phpunit show progress during test
public function log($something = null)
{
ob_end_clean();
var_dump($something);
ob_start();
}
public function log($something = null)
{
ob_end_clean();
var_dump($something);
ob_start();
}