OLD | NEW |
1 /******************************************************************** | 1 /******************************************************************** |
2 * COPYRIGHT: | 2 * COPYRIGHT: |
3 * Copyright (c) 2008-2013, International Business Machines Corporation | 3 * Copyright (c) 2008-2013, International Business Machines Corporation |
4 * and others. All Rights Reserved. | 4 * and others. All Rights Reserved. |
5 ********************************************************************/ | 5 ********************************************************************/ |
6 | 6 |
7 #ifndef __INTLTESTTIMEUNITTEST__ | 7 #ifndef __INTLTESTTIMEUNITTEST__ |
8 #define __INTLTESTTIMEUNITTEST__ | 8 #define __INTLTESTTIMEUNITTEST__ |
9 | 9 |
10 | 10 |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 * Performs tests for Greek | 43 * Performs tests for Greek |
44 * This tests that if the plural count listed in time unit format does not | 44 * This tests that if the plural count listed in time unit format does not |
45 * match those in the plural rules for the locale, those plural count in | 45 * match those in the plural rules for the locale, those plural count in |
46 * time unit format will be ingored and subsequently, fall back will kick in | 46 * time unit format will be ingored and subsequently, fall back will kick in |
47 * which is tested above. | 47 * which is tested above. |
48 * Without data sanitization, setNumberFormat() would crash. | 48 * Without data sanitization, setNumberFormat() would crash. |
49 * As of CLDR shiped in ICU4.8, Greek is one such language. | 49 * As of CLDR shiped in ICU4.8, Greek is one such language. |
50 */ | 50 */ |
51 void testGreekWithSanitization(); | 51 void testGreekWithSanitization(); |
52 | 52 |
| 53 /** |
| 54 * Performs unit test for ticket 10219 making sure that plurals work |
| 55 * correctly with rounding. |
| 56 */ |
| 57 void test10219Plurals(); |
| 58 |
53 }; | 59 }; |
54 | 60 |
55 #endif /* #if !UCONFIG_NO_FORMATTING */ | 61 #endif /* #if !UCONFIG_NO_FORMATTING */ |
56 | 62 |
57 #endif | 63 #endif |
OLD | NEW |