In my code, not the test, but the actuall class I am testing there is an if{ no closing }
PHPunit just crashes without telling what went wrong.
How do I configure it to show me the errors that it encounters?
the class is
class A{
public function __construct(){
if(true){
}
}
and the test is
$A=new A;