Skip to content
Advertisement

phpunit –debug still displays only dots

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 3.7.19 by Sebastian Bergmann.

Configuration read from /home/foo/bar/phpunit.xml

..S.......I..

contents of phpunit.xml:

JavaScript

What can be the reason for this?

Advertisement

Answer

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

JavaScript

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

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement