File tree Expand file tree Collapse file tree 2 files changed +660
-0
lines changed
src/Magento/FunctionalTestingFramework/StaticCheck Expand file tree Collapse file tree 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
1919 const DEPRECATED_ENTITY_USAGE_CHECK_NAME = 'deprecatedEntityUsage ' ;
2020 const PAUSE_ACTION_USAGE_CHECK_NAME = 'pauseActionUsage ' ;
2121 const CREATED_DATA_FROM_OUTSIDE_ACTIONGROUP = 'createdDataFromOutsideActionGroup ' ;
22+ const UNUSED_ENTITY_CHECK = 'unusedEntityCheck ' ;
2223 const STATIC_RESULTS = 'tests ' . DIRECTORY_SEPARATOR .'_output ' . DIRECTORY_SEPARATOR . 'static-results ' ;
2324
2425 /**
@@ -49,6 +50,7 @@ public function __construct(array $checks = [])
4950 self ::DEPRECATED_ENTITY_USAGE_CHECK_NAME => new DeprecatedEntityUsageCheck (),
5051 'annotations ' => new AnnotationsCheck (),
5152 self ::PAUSE_ACTION_USAGE_CHECK_NAME => new PauseActionUsageCheck (),
53+ self ::UNUSED_ENTITY_CHECK => new UnusedEntityCheck (),
5254 self ::CREATED_DATA_FROM_OUTSIDE_ACTIONGROUP => new CreatedDataFromOutsideActionGroupCheck ()
5355 ] + $ checks ;
5456
You can’t perform that action at this time.
0 commit comments