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 8a69ad9 commit 1f9cd2aCopy full SHA for 1f9cd2a
src/Magento/FunctionalTestingFramework/Suite/SuiteGenerator.php
@@ -174,6 +174,8 @@ public function generateTestgroupmembership($testManifest)
174
// Read all group files
175
if (is_dir($path)) {
176
$groupFiles = glob("$path/group*.txt");
177
+ echo "Group files-> \n";
178
+ print_r($groupFiles);
179
if ($groupFiles === false) {
180
throw new RuntimeException("glob(): error with '$path'");
181
}
@@ -184,6 +186,7 @@ public function generateTestgroupmembership($testManifest)
184
186
$groupNumber = 0;
185
187
$allGroupsContent = array();
188
while(!empty($groupFiles)){
189
+ echo "Group files not empty";
190
$group = array_pop($groupFiles);
191
$allGroupsContent[$groupNumber] = file($group);
192
$groupNumber++;
0 commit comments