It seems like you call parent on a different method (expectException() instead of expectExceptionClass()). Are you sure this is correct? If so, you might want to change this to $this->expectException().
This check looks for a call to a parent method whose name is different than
the method from which it is called.
The method setExpectedException() does not exist on Thunder\Serializard\Tests\AbstractTestCase. Did you maybe mean setExpectedExceptionFromAnnotation()?
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being
renamed likewise.
This check looks for a call to a parent method whose name is different than the method from which it is called.
Consider the following code:
The
getFirstName()
method in theSon
calls the wrong method in the parent class.