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