Skip to content

Commit f02c492

Browse files
committed
MQE-982: Verification Test around Suite Generation
- Added Cleanup for _generated before tests for this class start
1 parent 9e1cc70 commit f02c492

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

dev/tests/verification/Tests/SuiteGenerationTest.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,11 @@ public static function setUpBeforeClass()
5454
unlink(self::getManifestFilePath());
5555
}
5656

57+
// destroy _generated if it exists
58+
if (file_exists(self::GENERATE_RESULT_DIR)) {
59+
DirSetupUtil::rmdirRecursive(self::GENERATE_RESULT_DIR);
60+
}
61+
5762
$configYml = fopen(self::CONFIG_YML_FILE, "w");
5863
fclose($configYml);
5964
}

0 commit comments

Comments
 (0)