diff options
author | David <ottodavid@gmx.net> | 2015-08-10 06:42:01 +0200 |
---|---|---|
committer | David <ottodavid@gmx.net> | 2015-08-10 17:22:33 +0200 |
commit | 2bf1a517f3edc1bd43b8e3340f0f6fd31b1ba94a (patch) | |
tree | 285d7182be15299d8c0cdac1bd8aa1e397fa69d4 /tests/unit/I18N | |
parent | 92ee7558c6b6dd2461b645cb1f19a81ef8c50db5 (diff) |
fix unit tests
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 |