phpunit --debug still displays only dots

前端 未结 4 1306
忘掉有多难
忘掉有多难 2021-02-03 18:29

I want to see which test is currently executed during a phpunit run.

I use the --debug param but still only get dots:

$ phpunit --debug 
PHPUnit          


        
4条回答
  •  野趣味
    野趣味 (楼主)
    2021-02-03 19:20

    I had the same problem and resolved it by removing this:

    printerClass="PHPUnit_TextUI_ResultPrinter"
    

    from the options on the base tag in the phpunit.xml config file.

提交回复
热议问题