rmrevin / yii2-minify-view

Yii2 View component with minification css & js
MIT License
191 stars 67 forks source link

Update to PHPUnit 6 namespace #61

Closed acerix closed 6 years ago

acerix commented 6 years ago

This is to fix the error running tests with PHPUnit 6:

PHP Fatal error: Class 'PHPUnit_Framework_TestCase' not found in yii2-minify-view/tests/unit/TestCase.php on line 18

Starting with version 6, \PHPUnit_Framework_TestCase was renamed to \PHPUnit\Framework\TestCase.

https://stackoverflow.com/a/42561590

rmrevin commented 6 years ago

Thanks.