diff options
Diffstat (limited to 'tests/unit/I18N')
-rw-r--r-- | tests/unit/I18N/core/ChoiceFormatTest.php | 3 | ||||
-rw-r--r-- | tests/unit/I18N/core/CultureInfoTest.php | 3 | ||||
-rw-r--r-- | tests/unit/I18N/core/DateFormatTest.php | 3 | ||||
-rw-r--r-- | tests/unit/I18N/core/DateTimeFormatInfoTest.php | 3 | ||||
-rw-r--r-- | tests/unit/I18N/core/NumberFormatInfoTest.php | 3 | ||||
-rw-r--r-- | tests/unit/I18N/core/NumberFormatTest.php | 3 |
6 files changed, 12 insertions, 6 deletions
diff --git a/tests/unit/I18N/core/ChoiceFormatTest.php b/tests/unit/I18N/core/ChoiceFormatTest.php index 2c8ab5cb..8833a5a2 100644 --- a/tests/unit/I18N/core/ChoiceFormatTest.php +++ b/tests/unit/I18N/core/ChoiceFormatTest.php @@ -1,6 +1,7 @@ <?php -Prado::using('System.I18N.core.ChoiceFormat'); +use Prado\I18N\core\ChoiceFormat; + /** * @package System.I18N.core diff --git a/tests/unit/I18N/core/CultureInfoTest.php b/tests/unit/I18N/core/CultureInfoTest.php index 58c8f235..94a3c66c 100644 --- a/tests/unit/I18N/core/CultureInfoTest.php +++ b/tests/unit/I18N/core/CultureInfoTest.php @@ -1,7 +1,8 @@ <?php -Prado::using('System.I18N.core.CultureInfo'); +use Prado\I18N\core\CultureInfo; + /** * @package System.I18N.core diff --git a/tests/unit/I18N/core/DateFormatTest.php b/tests/unit/I18N/core/DateFormatTest.php index d8350204..b6a8667a 100644 --- a/tests/unit/I18N/core/DateFormatTest.php +++ b/tests/unit/I18N/core/DateFormatTest.php @@ -1,7 +1,8 @@ <?php -Prado::using('System.I18N.core.DateFormat'); +use Prado\I18N\core\DateFormat; + /** * @package System.I18N.core diff --git a/tests/unit/I18N/core/DateTimeFormatInfoTest.php b/tests/unit/I18N/core/DateTimeFormatInfoTest.php index ac93e1c7..b9717ac4 100644 --- a/tests/unit/I18N/core/DateTimeFormatInfoTest.php +++ b/tests/unit/I18N/core/DateTimeFormatInfoTest.php @@ -1,7 +1,8 @@ <?php -Prado::using('System.I18N.core.DateTimeFormatInfo'); +use Prado\I18N\core\DateTimeFormatInfo; + /** * @package System.I18N.core diff --git a/tests/unit/I18N/core/NumberFormatInfoTest.php b/tests/unit/I18N/core/NumberFormatInfoTest.php index 6243095a..fb1b7a8a 100644 --- a/tests/unit/I18N/core/NumberFormatInfoTest.php +++ b/tests/unit/I18N/core/NumberFormatInfoTest.php @@ -2,7 +2,8 @@ //NOTE: This page require UTF-8 aware editors -Prado::using('System.I18N.core.NumberFormatInfo'); +use Prado\I18N\core\NumberFormatInfo; + /** * @package System.I18N.core diff --git a/tests/unit/I18N/core/NumberFormatTest.php b/tests/unit/I18N/core/NumberFormatTest.php index ef8add77..d43c0248 100644 --- a/tests/unit/I18N/core/NumberFormatTest.php +++ b/tests/unit/I18N/core/NumberFormatTest.php @@ -2,7 +2,8 @@ //NOTE: This page require UTF-8 aware editors -Prado::using('System.I18N.core.NumberFormat'); +use Prado\I18N\core\NumberFormat; + /** * @package System.I18N.core |