Test filesverification/TestModule/Test/ExtendedFunctionalTest/ExtendingSkippedTest.xml
") */ class ExtendingSkippedTestCest { /** * @var bool */ private $isSuccess = false; /** * @Severity(level = SeverityLevel::CRITICAL) * @Features({"TestModule"}) * @Stories({"Child"}) * @param AcceptanceTester $I * @return void * @throws \Exception */ public function ExtendingSkippedTest(AcceptanceTester $I, \Codeception\Scenario $scenario) { unlink(__FILE__); $scenario->skip("This test is skipped due to the following issues:\nParentTestIsSkipped"); } }