mikeerickson / phpunit-pretty-result-printer

PHPUnit Pretty Result Printer -- make your PHPUnit tests look pretty!
MIT License
1.2k stars 71 forks source link

Empty test class shows incorrect class name #22

Open JayBizzle opened 6 years ago

JayBizzle commented 6 years ago

We have a test class that currently has no tests in it (it's a placeholder until we get time to write the tests).

In this instance, output looks like this....

 ==> AbstractDriverTest                           ✓ ✓ ✓ ✓ ✓ ✓
 ==> ConfigTest                                   ✓
 ==> PHPUnit_Framework_WarningTestCase            W
 ==> ShortlistControllerTest                      ✓ ✓ ✓

That PHPUnit_Framework_WarningTestCase line should actually refer to the empty test class which in my case is called SavedSearchControllerTest.

Not a big deal, but thought i'd mention it incase you weren't aware.

Thanks