Skip to content

Commit

Permalink
Remove now obsolete TestSuite failure edge case from TestDox printer
Browse files Browse the repository at this point in the history
  • Loading branch information
epdenouden authored and sebastianbergmann committed Nov 30, 2018
1 parent d0b6625 commit 654f7c7
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/Util/TestDox/CliTestDoxPrinter.php
Expand Up @@ -118,12 +118,6 @@ public function startTest(Test $test): void
if ($test instanceof TestCase) {
$className = $this->prettifier->prettifyTestClass(\get_class($test));
$testMethod = $this->prettifier->prettifyTestCase($test);
} elseif ($test instanceof TestSuite) {
$className = $test->getName();
$testMethod = \sprintf(
'Error bootstapping suite (most likely in %s::setUpBeforeClass)',
$test->getName()
);
} elseif ($test instanceof PhptTestCase) {
$className = \get_class($test);
$testMethod = $test->getName();
Expand Down

0 comments on commit 654f7c7

Please sign in to comment.