File tree Expand file tree Collapse file tree 3 files changed +7
-8
lines changed
dev/tests/integration/testsuite/Magento
Catalog/Model/System/Config/Backend/Catalog/Url/Rewrite Expand file tree Collapse file tree 3 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 32
32
* @magentoAppArea adminhtml
33
33
* @magentoDbIsolation enabled
34
34
* @magentoAppIsolation enabled
35
+ * @SuppressWarnings(PHPMD.CouplingBetweenObjects)
35
36
*/
36
37
class SuffixTest extends TestCase
37
38
{
Original file line number Diff line number Diff line change @@ -12,25 +12,25 @@ class ObjectManagerTest extends \PHPUnit\Framework\TestCase
12
12
/**#@+
13
13
* Test class with type error
14
14
*/
15
- const TEST_CLASS_WITH_TYPE_ERROR = \Magento \Framework \ObjectManager \TestAsset \ConstructorWithTypeError::class;
15
+ public const TEST_CLASS_WITH_TYPE_ERROR = \Magento \Framework \ObjectManager \TestAsset \ConstructorWithTypeError::class;
16
16
17
17
/**#@+
18
18
* Test classes for basic instantiation
19
19
*/
20
- const TEST_CLASS = \Magento \Framework \ObjectManager \TestAsset \Basic::class;
20
+ public const TEST_CLASS = \Magento \Framework \ObjectManager \TestAsset \Basic::class;
21
21
22
- const TEST_CLASS_INJECTION = \Magento \Framework \ObjectManager \TestAsset \BasicInjection::class;
22
+ public const TEST_CLASS_INJECTION = \Magento \Framework \ObjectManager \TestAsset \BasicInjection::class;
23
23
24
24
/**#@-*/
25
25
26
26
/**#@+
27
27
* Test classes and interface to test preferences
28
28
*/
29
- const TEST_INTERFACE = \Magento \Framework \ObjectManager \TestAsset \TestAssetInterface::class;
29
+ public const TEST_INTERFACE = \Magento \Framework \ObjectManager \TestAsset \TestAssetInterface::class;
30
30
31
- const TEST_INTERFACE_IMPLEMENTATION = \Magento \Framework \ObjectManager \TestAsset \InterfaceImplementation::class;
31
+ public const TEST_INTERFACE_IMPLEMENTATION = \Magento \Framework \ObjectManager \TestAsset \InterfaceImplementation::class;
32
32
33
- const TEST_CLASS_WITH_INTERFACE = \Magento \Framework \ObjectManager \TestAsset \InterfaceInjection::class;
33
+ public const TEST_CLASS_WITH_INTERFACE = \Magento \Framework \ObjectManager \TestAsset \InterfaceInjection::class;
34
34
35
35
/**#@-*/
36
36
Original file line number Diff line number Diff line change 1
1
<?php
2
2
/**
3
- * Test case for \Magento\Framework\Profiler
4
- *
5
3
* Copyright © Magento, Inc. All rights reserved.
6
4
* See COPYING.txt for license details.
7
5
*/
You can’t perform that action at this time.
0 commit comments