I have written an abstract test case class that is to be extended by concrete test case classes.
It extends from the PHPUnit_TestCase.
Is th
Assuming you want to exclude the file name TestCase.php. As in my case I use this class as an abstract to all my test classes which itself extends PHPUnit_Framework_TestCase.
TestCase.php
PHPUnit_Framework_TestCase
Solution: add this to your phpunit.xml
phpunit.xml
./tests ./tests/TestCase.php
My TestCase.php example: