File tree 2 files changed +3
-5
lines changed
src/Magento/FunctionalTestingFramework/StaticCheck
2 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 20
20
* Class ActionGroupArgumentsCheck
21
21
* @package Magento\FunctionalTestingFramework\StaticCheck
22
22
*/
23
- class ActionGroupArgumentsCheck implements StaticCheckInterface
23
+ class ActionGroupStandardsCheck implements StaticCheckInterface
24
24
{
25
25
const ACTIONGROUP_NAME_REGEX_PATTERN = '/<actionGroup name=[" \']([^ \'"]*)/ ' ;
26
- const ERROR_LOG_FILENAME = 'mftf-arguments -checks ' ;
26
+ const ERROR_LOG_FILENAME = 'mftf-standards -checks ' ;
27
27
const ERROR_LOG_MESSAGE = 'MFTF Action Group Unused Arguments Check ' ;
28
28
const STEP_KEY_REGEX_PATTERN = '/stepKey=[" \']([^ \'"]*)/ ' ;
29
29
Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ class StaticChecksList implements StaticCheckListInterface
20
20
const PAUSE_ACTION_USAGE_CHECK_NAME = 'pauseActionUsage ' ;
21
21
const CREATED_DATA_FROM_OUTSIDE_ACTIONGROUP = 'createdDataFromOutsideActionGroup ' ;
22
22
const UNUSED_ENTITY_CHECK = 'unusedEntityCheck ' ;
23
- const DUPLICATE_STEP_KEYS = 'duplicateStepKeys ' ;
24
23
const STATIC_RESULTS = 'tests ' . DIRECTORY_SEPARATOR .'_output ' . DIRECTORY_SEPARATOR . 'static-results ' ;
25
24
26
25
/**
@@ -47,13 +46,12 @@ public function __construct(array $checks = [])
47
46
{
48
47
$ this ->checks = [
49
48
'testDependencies ' => new TestDependencyCheck (),
50
- 'actionGroupArguments ' => new ActionGroupArgumentsCheck (),
49
+ 'actionGroupStandards ' => new ActionGroupStandardsCheck (),
51
50
self ::DEPRECATED_ENTITY_USAGE_CHECK_NAME => new DeprecatedEntityUsageCheck (),
52
51
'annotations ' => new AnnotationsCheck (),
53
52
self ::PAUSE_ACTION_USAGE_CHECK_NAME => new PauseActionUsageCheck (),
54
53
self ::UNUSED_ENTITY_CHECK => new UnusedEntityCheck (),
55
54
self ::CREATED_DATA_FROM_OUTSIDE_ACTIONGROUP => new CreatedDataFromOutsideActionGroupCheck (),
56
- self ::DUPLICATE_STEP_KEYS => new DuplicateStepKeysCheck ()
57
55
] + $ checks ;
58
56
59
57
// Static checks error files directory
You can’t perform that action at this time.
0 commit comments