I don't see discussion forums over at phpunit.de so I'm hoping anyone using phpunit in this community can assist.
I downloaded the phpunit 6.4.3 phar and added it to my IDE. When I tried to extend the test class with PHPUnit_Framework_TestCase and use assertEquals, it throws this error:
"PHPUnit_Framework_TestCase cannot be resolved to a type"
The IDE wants to change TestCase to PHPUnit_Framework_MockObject_Matcher
So I let the IDE make the correction but there isn't an assertEquals method anymore (I checked just to be sure, by changing the phar, that assertEquals is in version 5.7.23 though).
Perhaps I'm overlooking the documentation, but when I Google PHPUnit_Framework_MockObject_Matcher, I'm seeing what the new method is.
Does anyone know to perform an equivalent assertEquals test in version 6.4.3?
=====
EDIT. Adding screenshots of my phpunit install, the project build path, and the Eclipse error.