elliotchance / concise

✅ Concise is test framework for using plain English and minimal code, built on PHPUnit.
MIT License
45 stars 3 forks source link

Concise\Core\TestCase must be abstract #325

Closed elliotchance closed 8 years ago

elliotchance commented 8 years ago

In some versions of PHPUnit it will try and run TestCase as a separate test case, but not in all cases. It seems the fix for this is to make it abstract.

This will affect code that tried to manually instantiate the TestCase itself - perhaps something like IsolatedTestCase extends TestCase.

elliotchance commented 8 years ago

This was already fixed by the time I found the bug was still open.