From 5799d2532468ac6d58bcf6ac3f9b2cc18556d6e6 Mon Sep 17 00:00:00 2001 From: stealth35 Date: Mon, 16 Apr 2012 13:33:13 +0200 Subject: [PATCH] Add BOGUS UErrorCode test --- tests/Symfony/Tests/Component/Locale/Stub/StubIntlTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/Symfony/Tests/Component/Locale/Stub/StubIntlTest.php b/tests/Symfony/Tests/Component/Locale/Stub/StubIntlTest.php index b26eb46a0b..a8c8e07094 100644 --- a/tests/Symfony/Tests/Component/Locale/Stub/StubIntlTest.php +++ b/tests/Symfony/Tests/Component/Locale/Stub/StubIntlTest.php @@ -22,9 +22,11 @@ class StubIntlTest extends LocaleTestCase public function codeProvider() { return array ( + array(-129, '[BOGUS UErrorCode]'), array(0, 'U_ZERO_ERROR'), array(1, 'U_ILLEGAL_ARGUMENT_ERROR'), array(9, 'U_PARSE_ERROR'), + array(129, '[BOGUS UErrorCode]'), ); }