Skip to content

Commit 74f7956

Browse files
author
Willem Wigman
committed
#4 Change tests/Util to tests/src
1 parent bccf67e commit 74f7956

7 files changed

+9
-9
lines changed

tests/Integration/AbstractFrontendControllerTest.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33

44
namespace IntegerNet\GlobalCustomLayout\Test\Integration;
55

6-
use IntegerNet\GlobalCustomLayout\Test\Util\CategoryLayoutUpdateManager;
7-
use IntegerNet\GlobalCustomLayout\Test\Util\PageLayoutUpdateManager;
8-
use IntegerNet\GlobalCustomLayout\Test\Util\ProductLayoutUpdateManager;
6+
use IntegerNet\GlobalCustomLayout\Test\src\CategoryLayoutUpdateManager;
7+
use IntegerNet\GlobalCustomLayout\Test\src\PageLayoutUpdateManager;
8+
use IntegerNet\GlobalCustomLayout\Test\src\ProductLayoutUpdateManager;
99
use Magento\Framework\ObjectManagerInterface;
1010
use Magento\Framework\View\LayoutInterface;
1111
use Magento\TestFramework\Helper\Bootstrap;

tests/Integration/CategoryFrontendControllerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace IntegerNet\GlobalCustomLayout\Test\Integration;
55

6-
use IntegerNet\GlobalCustomLayout\Test\Util\CategoryLayoutUpdateManager;
6+
use IntegerNet\GlobalCustomLayout\Test\src\CategoryLayoutUpdateManager;
77
use Magento\Catalog\Api\CategoryRepositoryInterface;
88
use Magento\Catalog\Api\Data\CategoryInterface;
99
use Magento\Framework\Exception\CouldNotSaveException;

tests/Integration/PageFrontendControllerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace IntegerNet\GlobalCustomLayout\Test\Integration;
55

6-
use IntegerNet\GlobalCustomLayout\Test\Util\PageLayoutUpdateManager;
6+
use IntegerNet\GlobalCustomLayout\Test\src\PageLayoutUpdateManager;
77
use Magento\Cms\Model\Page;
88
use Magento\Cms\Model\Page\CustomLayoutRepositoryInterface;
99
use Magento\Cms\Model\PageFactory;

tests/Integration/ProductFrontendControllerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace IntegerNet\GlobalCustomLayout\Test\Integration;
55

6-
use IntegerNet\GlobalCustomLayout\Test\Util\ProductLayoutUpdateManager;
6+
use IntegerNet\GlobalCustomLayout\Test\src\ProductLayoutUpdateManager;
77
use Magento\Catalog\Api\Data\ProductInterface;
88
use Magento\Catalog\Api\ProductRepositoryInterface;
99
use Magento\Framework\Exception\CouldNotSaveException;

tests/Util/CategoryLayoutUpdateManager.php renamed to tests/src/CategoryLayoutUpdateManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
declare(strict_types=1);
33

4-
namespace IntegerNet\GlobalCustomLayout\Test\Util;
4+
namespace IntegerNet\GlobalCustomLayout\Test\src;
55

66
use Magento\Catalog\Api\Data\CategoryInterface;
77
use Magento\Catalog\Model\Category\Attribute\LayoutUpdateManager;

tests/Util/PageLayoutUpdateManager.php renamed to tests/src/PageLayoutUpdateManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
declare(strict_types=1);
33

4-
namespace IntegerNet\GlobalCustomLayout\Test\Util;
4+
namespace IntegerNet\GlobalCustomLayout\Test\src;
55

66
use Magento\Cms\Api\Data\PageInterface;
77
use Magento\Cms\Model\Page\CustomLayout\CustomLayoutManager;

tests/Util/ProductLayoutUpdateManager.php renamed to tests/src/ProductLayoutUpdateManager.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22
declare(strict_types=1);
33

4-
namespace IntegerNet\GlobalCustomLayout\Test\Util;
4+
namespace IntegerNet\GlobalCustomLayout\Test\src;
55

66
use Magento\Catalog\Api\Data\ProductInterface;
77
use Magento\Catalog\Model\Product\Attribute\LayoutUpdateManager;

0 commit comments

Comments
 (0)