升级到4.0.4后,PHPUnit不起作用

This morning I updated my phpunit version from 3.7.x to 4.0.x.

I usually run PHPUnit with a bootstrap which contains

require('PHPUnit/Framework/Assert/Functions.php');

Since the update, when I try to run my phpunit tests, it fails because of the following error:

Fatal error: require(): Failed opening required 'PHPUnit/Framework/Assert/Functions.php' (include_path='.:/usr/local/lib/php/:/usr/local/share/pear/') on line 6

What can I do to resolve this?

That file changed location. It is now in src/Framework/Assert/Functions.php.