We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f35e8a commit 5ad4bcfCopy full SHA for 5ad4bcf
src/Event/Value/TestSuite/TestSuiteBuilder.php
@@ -31,18 +31,6 @@ final class TestSuiteBuilder
31
*/
32
public static function from(FrameworkTestSuite $testSuite): TestSuite
33
{
34
- $groups = [];
35
-
36
- foreach ($testSuite->groupDetails() as $groupName => $tests) {
37
- if (!isset($groups[$groupName])) {
38
- $groups[$groupName] = [];
39
- }
40
41
- foreach ($tests as $test) {
42
- $groups[$groupName][] = $test::class;
43
44
45
46
$tests = [];
47
48
self::process($testSuite, $tests);
0 commit comments