From 654f7c70c6022920225dfdbf4756bb0591bff5ac Mon Sep 17 00:00:00 2001 From: Ewout Pieter den Ouden Date: Thu, 29 Nov 2018 22:20:44 +0100 Subject: [PATCH] Remove now obsolete TestSuite failure edge case from TestDox printer --- src/Util/TestDox/CliTestDoxPrinter.php | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/Util/TestDox/CliTestDoxPrinter.php b/src/Util/TestDox/CliTestDoxPrinter.php index 124b781dd1a..217377e72cd 100644 --- a/src/Util/TestDox/CliTestDoxPrinter.php +++ b/src/Util/TestDox/CliTestDoxPrinter.php @@ -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();