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 3232 * @magentoAppArea adminhtml
3333 * @magentoDbIsolation enabled
3434 * @magentoAppIsolation enabled
35+ * @SuppressWarnings(PHPMD.CouplingBetweenObjects)
3536 */
3637class SuffixTest extends TestCase
3738{
Original file line number Diff line number Diff line change @@ -12,25 +12,25 @@ class ObjectManagerTest extends \PHPUnit\Framework\TestCase
1212 /**#@+
1313 * Test class with type error
1414 */
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;
1616
1717 /**#@+
1818 * Test classes for basic instantiation
1919 */
20- const TEST_CLASS = \Magento \Framework \ObjectManager \TestAsset \Basic::class;
20+ public const TEST_CLASS = \Magento \Framework \ObjectManager \TestAsset \Basic::class;
2121
22- const TEST_CLASS_INJECTION = \Magento \Framework \ObjectManager \TestAsset \BasicInjection::class;
22+ public const TEST_CLASS_INJECTION = \Magento \Framework \ObjectManager \TestAsset \BasicInjection::class;
2323
2424 /**#@-*/
2525
2626 /**#@+
2727 * Test classes and interface to test preferences
2828 */
29- const TEST_INTERFACE = \Magento \Framework \ObjectManager \TestAsset \TestAssetInterface::class;
29+ public const TEST_INTERFACE = \Magento \Framework \ObjectManager \TestAsset \TestAssetInterface::class;
3030
31- const TEST_INTERFACE_IMPLEMENTATION = \Magento \Framework \ObjectManager \TestAsset \InterfaceImplementation::class;
31+ public const TEST_INTERFACE_IMPLEMENTATION = \Magento \Framework \ObjectManager \TestAsset \InterfaceImplementation::class;
3232
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;
3434
3535 /**#@-*/
3636
Original file line number Diff line number Diff line change 11<?php
22/**
3- * Test case for \Magento\Framework\Profiler
4- *
53 * Copyright © Magento, Inc. All rights reserved.
64 * See COPYING.txt for license details.
75 */
You can’t perform that action at this time.
0 commit comments