is there a way to print the execution time of each test with PHPUnit?
You can implement your own test runner, for example by extending PHPUnit_TextUI_TestRunner and make it collect and print run times.
PHPUnit_TextUI_TestRunner