-
Notifications
You must be signed in to change notification settings - Fork 9.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#8691: improved cases for DictionaryTest
- Loading branch information
Vaha
committed
Jan 22, 2020
1 parent
0237c02
commit c42ebc1
Showing
33 changed files
with
267 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 5 additions & 1 deletion
6
dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/baz/en_gb/1.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,5 @@ | ||
four and 5/10,4.5 | ||
one,1.00 | ||
two,2.00 | ||
three,3.00 | ||
four,4.00 | ||
four and 5/10,4.5 |
3 changes: 3 additions & 0 deletions
3
dev/tests/integration/testsuite/Magento/Framework/App/Language/_files/devdoc/en_ak/1.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
seven,en_ak_seven | ||
eight,en_ak_eight | ||
nine,en_ak_nine |
15 changes: 15 additions & 0 deletions
15
...sts/integration/testsuite/Magento/Framework/App/Language/_files/devdoc/en_ak/language.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0"?> | ||
<!-- | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
--> | ||
<language xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/Language/package.xsd"> | ||
<code>en_AK</code> | ||
<vendor>devdoc</vendor> | ||
<package>en_ak</package> | ||
<sort_order>0</sort_order> | ||
<use vendor="parent-package-one" package="language_package_one"/> | ||
<use vendor="parent-package-two" package="language_package_two"/> | ||
</language> |
9 changes: 9 additions & 0 deletions
9
...integration/testsuite/Magento/Framework/App/Language/_files/devdoc/en_ak/registration.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
|
||
use Magento\Framework\Component\ComponentRegistrar; | ||
|
||
ComponentRegistrar::register(ComponentRegistrar::LANGUAGE, 'devdoc_en_ak', __DIR__); |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
...on/testsuite/Magento/Framework/App/Language/_files/parent-package-one/en_au_package/1.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
five,en_au_package_five | ||
six,en_au_package_six | ||
seven,en_au_package_seven | ||
eight,en_au_package_eight | ||
nine,en_au_package_nine |
14 changes: 14 additions & 0 deletions
14
...suite/Magento/Framework/App/Language/_files/parent-package-one/en_au_package/language.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0"?> | ||
<!-- | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
--> | ||
<language xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/Language/package.xsd"> | ||
<code>en_US</code> | ||
<vendor>parent-package-one</vendor> | ||
<package>en_au_package</package> | ||
<sort_order>0</sort_order> | ||
<use vendor="parent-package-one" package="en_ie_package"/> | ||
</language> |
9 changes: 9 additions & 0 deletions
9
...e/Magento/Framework/App/Language/_files/parent-package-one/en_au_package/registration.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
|
||
use Magento\Framework\Component\ComponentRegistrar; | ||
|
||
ComponentRegistrar::register(ComponentRegistrar::LANGUAGE, 'parent-package-one_en_au_package', __DIR__); |
6 changes: 6 additions & 0 deletions
6
...on/testsuite/Magento/Framework/App/Language/_files/parent-package-one/en_ie_package/1.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
four,en_ie_package_four | ||
five,en_ie_package_five | ||
six,en_ie_package_six | ||
seven,en_ie_package_seven | ||
eight,en_ie_package_eight | ||
nine,en_ie_package_nine |
13 changes: 13 additions & 0 deletions
13
...suite/Magento/Framework/App/Language/_files/parent-package-one/en_ie_package/language.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0"?> | ||
<!-- | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
--> | ||
<language xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/Language/package.xsd"> | ||
<code>en_US</code> | ||
<vendor>parent-package-one</vendor> | ||
<package>en_ie_package</package> | ||
<sort_order>0</sort_order> | ||
</language> |
9 changes: 9 additions & 0 deletions
9
...e/Magento/Framework/App/Language/_files/parent-package-one/en_ie_package/registration.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
|
||
use Magento\Framework\Component\ComponentRegistrar; | ||
|
||
ComponentRegistrar::register(ComponentRegistrar::LANGUAGE, 'parent-package-one_en_ie_package', __DIR__); |
4 changes: 4 additions & 0 deletions
4
...suite/Magento/Framework/App/Language/_files/parent-package-one/language_package_one/1.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
six,language_package_one_six | ||
seven,language_package_one_seven | ||
eight,language_package_one_eight | ||
nine,language_package_one_nine |
14 changes: 14 additions & 0 deletions
14
...agento/Framework/App/Language/_files/parent-package-one/language_package_one/language.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0"?> | ||
<!-- | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
--> | ||
<language xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/Language/package.xsd"> | ||
<code>en_US</code> | ||
<vendor>parent-package-one</vendor> | ||
<package>language_package_one</package> | ||
<sort_order>0</sort_order> | ||
<use vendor="parent-package-one" package="en_au_package"/> | ||
</language> |
9 changes: 9 additions & 0 deletions
9
...to/Framework/App/Language/_files/parent-package-one/language_package_one/registration.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
|
||
use Magento\Framework\Component\ComponentRegistrar; | ||
|
||
ComponentRegistrar::register(ComponentRegistrar::LANGUAGE, 'parent-package-one_language_package_one', __DIR__); |
8 changes: 8 additions & 0 deletions
8
...on/testsuite/Magento/Framework/App/Language/_files/parent-package-two/en_ca_package/1.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
two,en_ca_package_two | ||
three,en_ca_package_three | ||
four,en_ca_package_four | ||
five,en_ca_package_five | ||
six,en_ca_package_six | ||
seven,en_ca_package_seven | ||
eight,en_ca_package_eight | ||
nine,en_ca_package_nine |
14 changes: 14 additions & 0 deletions
14
...suite/Magento/Framework/App/Language/_files/parent-package-two/en_ca_package/language.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0"?> | ||
<!-- | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
--> | ||
<language xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/Language/package.xsd"> | ||
<code>en_US</code> | ||
<vendor>parent-package-two</vendor> | ||
<package>en_ca_package</package> | ||
<sort_order>0</sort_order> | ||
<use vendor="parent-package-two" package="en_us_package"/> | ||
</language> |
9 changes: 9 additions & 0 deletions
9
...e/Magento/Framework/App/Language/_files/parent-package-two/en_ca_package/registration.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
|
||
use Magento\Framework\Component\ComponentRegistrar; | ||
|
||
ComponentRegistrar::register(ComponentRegistrar::LANGUAGE, 'parent-package-two_en_ca_package', __DIR__); |
9 changes: 9 additions & 0 deletions
9
...on/testsuite/Magento/Framework/App/Language/_files/parent-package-two/en_us_package/1.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
one,en_us_package_one | ||
two,en_us_package_two | ||
three,en_us_package_three | ||
four,en_us_package_four | ||
five,en_us_package_five | ||
six,en_us_package_six | ||
seven,en_us_package_seven | ||
eight,en_us_package_eight | ||
nine,en_us_package_nine |
13 changes: 13 additions & 0 deletions
13
...suite/Magento/Framework/App/Language/_files/parent-package-two/en_us_package/language.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0"?> | ||
<!-- | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
--> | ||
<language xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/Language/package.xsd"> | ||
<code>en_US</code> | ||
<vendor>parent-package-two</vendor> | ||
<package>en_us_package</package> | ||
<sort_order>0</sort_order> | ||
</language> |
9 changes: 9 additions & 0 deletions
9
...e/Magento/Framework/App/Language/_files/parent-package-two/en_us_package/registration.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
|
||
use Magento\Framework\Component\ComponentRegistrar; | ||
|
||
ComponentRegistrar::register(ComponentRegistrar::LANGUAGE, 'parent-package-two_en_us_package', __DIR__); |
7 changes: 7 additions & 0 deletions
7
...suite/Magento/Framework/App/Language/_files/parent-package-two/language_package_two/1.csv
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
three,language_package_two_three | ||
four,language_package_two_four | ||
five,language_package_two_five | ||
six,language_package_two_six | ||
seven,language_package_two_seven | ||
eight,language_package_two_eight | ||
nine,language_package_two_nine |
14 changes: 14 additions & 0 deletions
14
...agento/Framework/App/Language/_files/parent-package-two/language_package_two/language.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0"?> | ||
<!-- | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
--> | ||
<language xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/Language/package.xsd"> | ||
<code>en_US</code> | ||
<vendor>parent-package-two</vendor> | ||
<package>language_package_two</package> | ||
<sort_order>0</sort_order> | ||
<use vendor="parent-package-two" package="en_ca_package"/> | ||
</language> |
9 changes: 9 additions & 0 deletions
9
...to/Framework/App/Language/_files/parent-package-two/language_package_two/registration.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?php | ||
/** | ||
* Copyright © Magento, Inc. All rights reserved. | ||
* See COPYING.txt for license details. | ||
*/ | ||
|
||
use Magento\Framework\Component\ComponentRegistrar; | ||
|
||
ComponentRegistrar::register(ComponentRegistrar::LANGUAGE, 'parent-package-two_language_package_two', __DIR__); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters