SkippedTestNoIssues.txt 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. namespace Magento\AcceptanceTest\_default\Backend;
  3. use Magento\FunctionalTestingFramework\AcceptanceTester;
  4. use Magento\FunctionalTestingFramework\DataGenerator\Handlers\CredentialStore;
  5. use Magento\FunctionalTestingFramework\DataGenerator\Handlers\PersistedObjectHandler;
  6. use \Codeception\Util\Locator;
  7. use Yandex\Allure\Adapter\Annotation\Features;
  8. use Yandex\Allure\Adapter\Annotation\Stories;
  9. use Yandex\Allure\Adapter\Annotation\Title;
  10. use Yandex\Allure\Adapter\Annotation\Description;
  11. use Yandex\Allure\Adapter\Annotation\Parameter;
  12. use Yandex\Allure\Adapter\Annotation\Severity;
  13. use Yandex\Allure\Adapter\Model\SeverityLevel;
  14. use Yandex\Allure\Adapter\Annotation\TestCaseId;
  15. /**
  16. * @Title("[NO TESTCASEID]: skippedNoIssuesTest")
  17. * @Description("")
  18. * @group skip
  19. */
  20. class SkippedTestNoIssuesCest
  21. {
  22. /**
  23. * @Stories({"skippedNo"})
  24. * @Severity(level = SeverityLevel::MINOR)
  25. * @Features({"TestModule"})
  26. * @Parameter(name = "AcceptanceTester", value="$I")
  27. * @param AcceptanceTester $I
  28. * @return void
  29. * @throws \Exception
  30. */
  31. public function SkippedTestNoIssues(AcceptanceTester $I, \Codeception\Scenario $scenario)
  32. {
  33. $scenario->skip("This test is skipped due to the following issues:\nNo issues have been specified.");
  34. }
  35. }