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
Just add the skip on the setUp():
protected function setUp() { $this->markTestIncomplete(); }