Skip to content

Commit b1a4665

Browse files
committed
MQE-279: Create repositories in magento organization
1 parent 9ccd984 commit b1a4665

File tree

128 files changed

+1032
-1081
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

128 files changed

+1032
-1081
lines changed

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"name": "magento/magento2-acceptance-test-framework",
2+
"name": "magento/magento2-functional-testing-framework",
33
"type": "library",
4-
"description": "Magento Acceptance Testing Framework",
5-
"keywords": ["magento", "automation", "acceptance", "testing"],
4+
"description": "Magento2 Functional Testing Framework",
5+
"keywords": ["magento", "automation", "functional", "testing"],
66
"require": {
77
"php": "~7.0",
88
"codeception/codeception": "2.2|2.3",
@@ -15,8 +15,8 @@
1515
},
1616
"autoload": {
1717
"psr-4": {
18-
"Magento\\AcceptanceTestFramework\\": [
19-
"src/Magento/AcceptanceTestFramework"
18+
"Magento\\FunctionalTestingFramework\\": [
19+
"src/Magento/FunctionalTestingFramework"
2020
]
2121
}
2222
}

composer.lock

Lines changed: 97 additions & 146 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/tests/static/Magento/ruleset.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
* See COPYING.txt for license details.
66
*/
77
-->
8-
<ruleset name="MagentoAcceptanceTestFramework">
9-
<description>Custom Magento Acceptance Test Framework coding standard.</description>
8+
<ruleset name="Magento2FunctionalTestingFramework">
9+
<description>Custom Magento2 Functional Testing Framework coding standard.</description>
1010

1111
<rule ref="PSR2"/>
1212

etc/di.xml

Lines changed: 93 additions & 93 deletions
Large diffs are not rendered by default.

src/Magento/AcceptanceTestFramework/ObjectManager/ConfigLoader/Primary.php

Lines changed: 0 additions & 71 deletions
This file was deleted.

src/Magento/AcceptanceTestFramework/ObjectManagerFactory.php

Lines changed: 0 additions & 120 deletions
This file was deleted.

src/Magento/AcceptanceTestFramework/Code/Reader/ClassReader.php renamed to src/Magento/FunctionalTestingFramework/Code/Reader/ClassReader.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Copyright © Magento, Inc. All rights reserved.
44
* See COPYING.txt for license details.
55
*/
6-
namespace Magento\AcceptanceTestFramework\Code\Reader;
6+
namespace Magento\FunctionalTestingFramework\Code\Reader;
77

88
class ClassReader implements ClassReaderInterface
99
{

src/Magento/AcceptanceTestFramework/Code/Reader/ClassReaderInterface.php renamed to src/Magento/FunctionalTestingFramework/Code/Reader/ClassReaderInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* See COPYING.txt for license details.
66
*/
77

8-
namespace Magento\AcceptanceTestFramework\Code\Reader;
8+
namespace Magento\FunctionalTestingFramework\Code\Reader;
99

1010
interface ClassReaderInterface
1111
{

src/Magento/AcceptanceTestFramework/Config/Converter.php renamed to src/Magento/FunctionalTestingFramework/Config/Converter.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
* Copyright © Magento, Inc. All rights reserved.
44
* See COPYING.txt for license details.
55
*/
6-
namespace Magento\AcceptanceTestFramework\Config;
6+
namespace Magento\FunctionalTestingFramework\Config;
77

8-
use Magento\AcceptanceTestFramework\ObjectManager\Config\Mapper\ArgumentParser;
9-
use Magento\AcceptanceTestFramework\Data\Argument\InterpreterInterface;
8+
use Magento\FunctionalTestingFramework\ObjectManager\Config\Mapper\ArgumentParser;
9+
use Magento\FunctionalTestingFramework\Data\Argument\InterpreterInterface;
1010

1111
/**
1212
* Converter for configuration data.
1313
*/
14-
class Converter implements \Magento\AcceptanceTestFramework\Config\ConverterInterface
14+
class Converter implements \Magento\FunctionalTestingFramework\Config\ConverterInterface
1515
{
1616
/**
1717
* Unique identifier of node.

src/Magento/AcceptanceTestFramework/Config/Converter/Dom/Flat.php renamed to src/Magento/FunctionalTestingFramework/Config/Converter/Dom/Flat.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
* Copyright © 2013-2017 Magento, Inc. All rights reserved.
44
* See COPYING.txt for license details.
55
*/
6-
namespace Magento\AcceptanceTestFramework\Config\Converter\Dom;
6+
namespace Magento\FunctionalTestingFramework\Config\Converter\Dom;
77

8-
use Magento\AcceptanceTestFramework\Config\Dom\ArrayNodeConfig;
8+
use Magento\FunctionalTestingFramework\Config\Dom\ArrayNodeConfig;
99

1010
/**
1111
* Universal converter of any XML data to an array representation with no data loss

0 commit comments

Comments
 (0)