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