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

src/Magento/AcceptanceTestFramework/Config/ConverterInterface.php renamed to src/Magento/FunctionalTestingFramework/Config/ConverterInterface.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\Config;
6+
namespace Magento\FunctionalTestingFramework\Config;
77

88
/**
99
* Interface ConverterInterface

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

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@
44
* See COPYING.txt for license details.
55
*/
66

7-
namespace Magento\AcceptanceTestFramework\Config;
7+
namespace Magento\FunctionalTestingFramework\Config;
88

99
/**
1010
* Class Data
1111
*/
12-
class Data implements \Magento\AcceptanceTestFramework\Config\DataInterface
12+
class Data implements \Magento\FunctionalTestingFramework\Config\DataInterface
1313
{
1414
/**
1515
* Configuration reader model
1616
*
17-
* @var \Magento\AcceptanceTestFramework\Config\ReaderInterface
17+
* @var \Magento\FunctionalTestingFramework\Config\ReaderInterface
1818
*/
1919
protected $reader;
2020

@@ -28,9 +28,9 @@ class Data implements \Magento\AcceptanceTestFramework\Config\DataInterface
2828
/**
2929
* Constructor
3030
*
31-
* @param \Magento\AcceptanceTestFramework\Config\ReaderInterface $reader
31+
* @param \Magento\FunctionalTestingFramework\Config\ReaderInterface $reader
3232
*/
33-
public function __construct(\Magento\AcceptanceTestFramework\Config\ReaderInterface $reader)
33+
public function __construct(\Magento\FunctionalTestingFramework\Config\ReaderInterface $reader)
3434
{
3535
$this->reader = $reader;
3636
$this->load();

src/Magento/AcceptanceTestFramework/Config/DataInterface.php renamed to src/Magento/FunctionalTestingFramework/Config/DataInterface.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\Config;
6+
namespace Magento\FunctionalTestingFramework\Config;
77

88
/**
99
* Interface DataInterface

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* See COPYING.txt for license details.
55
*/
66

7-
namespace Magento\AcceptanceTestFramework\Config;
7+
namespace Magento\FunctionalTestingFramework\Config;
88

99
/**
1010
* Magento configuration XML DOM utility
@@ -331,7 +331,7 @@ public function getDom()
331331
*
332332
* @param string $xml
333333
* @return \DOMDocument
334-
* @throws \Magento\AcceptanceTestFramework\Config\Dom\ValidationException
334+
* @throws \Magento\FunctionalTestingFramework\Config\Dom\ValidationException
335335
*/
336336
protected function initDom($xml)
337337
{
@@ -340,7 +340,7 @@ protected function initDom($xml)
340340
if ($this->schemaFile) {
341341
$errors = self::validateDomDocument($dom, $this->schemaFile, $this->errorFormat);
342342
if (count($errors)) {
343-
throw new \Magento\AcceptanceTestFramework\Config\Dom\ValidationException(implode("\n", $errors));
343+
throw new \Magento\FunctionalTestingFramework\Config\Dom\ValidationException(implode("\n", $errors));
344344
}
345345
}
346346
return $dom;

src/Magento/AcceptanceTestFramework/Config/Dom/ArrayNodeConfig.php renamed to src/Magento/FunctionalTestingFramework/Config/Dom/ArrayNodeConfig.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\Config\Dom;
6+
namespace Magento\FunctionalTestingFramework\Config\Dom;
77

88
/**
99
* Configuration of nodes that represent numeric or associative arrays

src/Magento/AcceptanceTestFramework/Config/Dom/NodeMergingConfig.php renamed to src/Magento/FunctionalTestingFramework/Config/Dom/NodeMergingConfig.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\Config\Dom;
6+
namespace Magento\FunctionalTestingFramework\Config\Dom;
77

88
/**
99
* Configuration of identifier attributes to be taken into account during merging

src/Magento/AcceptanceTestFramework/Config/Dom/NodePathMatcher.php renamed to src/Magento/FunctionalTestingFramework/Config/Dom/NodePathMatcher.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\Config\Dom;
6+
namespace Magento\FunctionalTestingFramework\Config\Dom;
77

88
/**
99
* Matching of XPath expressions to path patterns

src/Magento/AcceptanceTestFramework/Config/Dom/ValidationException.php renamed to src/Magento/FunctionalTestingFramework/Config/Dom/ValidationException.php

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

7-
namespace Magento\AcceptanceTestFramework\Config\Dom;
7+
namespace Magento\FunctionalTestingFramework\Config\Dom;
88

99
/**
1010
* \Exception that should be thrown by DOM model when incoming xml is not valid.

0 commit comments

Comments
 (0)