is there a way to print the execution time of each test with PHPUnit?
I guess you could use the setUp
and tearDown
methods (which are called at the beginning and end of each test, respectively) to :
setUp
,tearDown
.
Of course, you'll have to do this in each one of your test classes -- or in a super-class which will be inherited by all your test classes.