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