File tree 2 files changed +660
-0
lines changed
src/Magento/FunctionalTestingFramework/StaticCheck
2 files changed +660
-0
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ class StaticChecksList implements StaticCheckListInterface
19
19
const DEPRECATED_ENTITY_USAGE_CHECK_NAME = 'deprecatedEntityUsage ' ;
20
20
const PAUSE_ACTION_USAGE_CHECK_NAME = 'pauseActionUsage ' ;
21
21
const CREATED_DATA_FROM_OUTSIDE_ACTIONGROUP = 'createdDataFromOutsideActionGroup ' ;
22
+ const UNUSED_ENTITY_CHECK = 'unusedEntityCheck ' ;
22
23
const STATIC_RESULTS = 'tests ' . DIRECTORY_SEPARATOR .'_output ' . DIRECTORY_SEPARATOR . 'static-results ' ;
23
24
24
25
/**
@@ -49,6 +50,7 @@ public function __construct(array $checks = [])
49
50
self ::DEPRECATED_ENTITY_USAGE_CHECK_NAME => new DeprecatedEntityUsageCheck (),
50
51
'annotations ' => new AnnotationsCheck (),
51
52
self ::PAUSE_ACTION_USAGE_CHECK_NAME => new PauseActionUsageCheck (),
53
+ self ::UNUSED_ENTITY_CHECK => new UnusedEntityCheck (),
52
54
self ::CREATED_DATA_FROM_OUTSIDE_ACTIONGROUP => new CreatedDataFromOutsideActionGroupCheck ()
53
55
] + $ checks ;
54
56
You can’t perform that action at this time.
0 commit comments