]> git.saurik.com Git - apple/icu.git/blame - icuSources/test/intltest/tchcfmt.cpp
ICU-6.2.22.tar.gz
[apple/icu.git] / icuSources / test / intltest / tchcfmt.cpp
CommitLineData
b75a7d8f
A
1
2/********************************************************************
3 * COPYRIGHT:
4 * Copyright (c) 1997-2003, International Business Machines Corporation and
5 * others. All Rights Reserved.
6 ********************************************************************/
7
8#include "unicode/utypes.h"
9
10#if !UCONFIG_NO_FORMATTING
11
12#include "intltest.h"
13#include "tchcfmt.h"
14#include "cmemory.h"
15#include "unicode/msgfmt.h"
16#include "unicode/choicfmt.h"
17
18#include <float.h>
19
20// tests have obvious memory leaks!
21
22void TestChoiceFormat::runIndexedTest(int32_t index, UBool exec,
23 const char* &name, char* /*par*/) {
24 switch (index) {
25 TESTCASE(0,TestSimpleExample);
26 TESTCASE(1,TestComplexExample);
27 TESTCASE(2,TestClosures);
28 TESTCASE(3,TestPatterns);
29 default: name = ""; break;
30 }
31}
32
33static UBool chkstatus( UErrorCode &status, const char* msg = NULL )
34{
35 UBool ok = U_SUCCESS(status);
36 if (!ok) it_errln( msg );
37 return ok;
38}
39
40void
41TestChoiceFormat::TestSimpleExample( void )
42{
43 double limits[] = {1,2,3,4,5,6,7};
44 UnicodeString monthNames[] = {"Sun","Mon","Tue","Wed","Thur","Fri","Sat"};
45 ChoiceFormat* form = new ChoiceFormat(limits, monthNames, 7);
46 ParsePosition parse_pos;
47 // TODO Fix this ParsePosition stuff...
48 UnicodeString str;
49 UnicodeString res1, res2;
50 UErrorCode status;
51 FieldPosition fpos(0);
52 Formattable f;
53 int32_t ix;
54 //for (double i = 0.0; i <= 8.0; ++i) {
55 for (ix = 0; ix <= 8; ++ix) {
56 double i = ix; //nos
57 status = U_ZERO_ERROR;
58 fpos = 0;
59 str = "";
60 res1 = form->format(i, str, fpos, status );
61 if (!chkstatus( status, "*** test_simple_example format" )) {
62 delete form;
63 return;
64 }
65 //form->parse(res1, f, parse_pos);
66 res2 = " ??? ";
374ca955 67 it_logln(UnicodeString("") + ix + UnicodeString(" -> ") + res1 + UnicodeString(" -> ") + res2);
b75a7d8f
A
68 }
69 //Testing ==operator
70 const double filelimits[] = {0,1,2};
71 const UnicodeString filepart[] = {"are no files","is one file","are {2} files"};
72 ChoiceFormat* formnew=new ChoiceFormat(filelimits, filepart, 3);
73 ChoiceFormat* formequal=new ChoiceFormat(limits, monthNames, 7);
74 if(*formnew == *form){
75 errln("ERROR: ==operator failed\n");
76 }
77 if(!(*form == *formequal)){
78 errln("ERROR: ==operator failed\n");
79 }
80 delete formequal;
81
82#ifdef U_USE_CHOICE_FORMAT_DEPRECATES
83 //Testing adoptChoices()
84 double *limitsToAdopt = (double *)uprv_malloc(7 * sizeof(double));
85 UnicodeString *monthNamesToAdopt = new UnicodeString[7];
86
87 uprv_arrayCopy(monthNames, monthNamesToAdopt, 7);
88 uprv_memcpy(limitsToAdopt, limits, (size_t)(7 * sizeof(limits[0])));
89
90 formnew->adoptChoices(limitsToAdopt, monthNamesToAdopt, 7);
91 if(!(*formnew == *form)){
92 errln("ERROR: ==Operator or adoptChoices failed\n");
93 }
94#endif
95
96 delete formnew;
97
98 //Testing getLimits()
99 double *gotLimits=0;
100 int32_t count=0;
101 gotLimits=(double*)form->getLimits(count);
102 if(count != 7){
103 errln("getLimits didn't update the count correctly\n");
104 }
105 for(ix=0; ix<count; ix++){
106 if(gotLimits[ix] != limits[ix]){
107 errln((UnicodeString)"getLimits didn't get the limits correctly. Expected " + limits[ix] + " Got " + gotLimits[ix]);
108 }
109 }
110 //Testing getFormat()
111 count=0;
112 UnicodeString *gotFormats=0;
113 gotFormats=(UnicodeString*)form->getFormats(count);
114 if(count != 7){
115 errln("getFormats didn't update the count correctly\n");
116 }
117 for(ix=0; ix<count; ix++){
118 if(gotFormats[ix] != monthNames[ix]){
119 errln((UnicodeString)"getFormats didn't get the Formats correctly. Expected " + monthNames[ix] + " Got " + gotFormats[ix]);
120 }
121 }
122
123
124 delete form;
125
126}
127
128void
129TestChoiceFormat::TestComplexExample( void )
130{
131 UErrorCode status = U_ZERO_ERROR;
132 const double filelimits[] = {-1, 0,1,2};
133 const UnicodeString filepart[] = {"are corrupted files", "are no files","is one file","are {2} files"};
134
135 ChoiceFormat* fileform = new ChoiceFormat( filelimits, filepart, 4);
136
137 if (!fileform) {
138 it_errln("*** test_complex_example fileform");
139 return;
140 }
141
142 Format* filenumform = NumberFormat::createInstance( status );
143 if (!filenumform) {
144 it_errln("*** test_complex_example filenumform");
145 delete fileform;
146 return;
147 }
148 if (!chkstatus( status, "*** test_simple_example filenumform" )) {
149 delete fileform;
150 delete filenumform;
151 return;
152 }
153
154 //const Format* testFormats[] = { fileform, NULL, filenumform };
155 //pattform->setFormats( testFormats, 3 );
156
157 MessageFormat* pattform = new MessageFormat("There {0} on {1}", status );
158 if (!pattform) {
159 it_errln("*** test_complex_example pattform");
160 delete fileform;
161 delete filenumform;
162 return;
163 }
164 if (!chkstatus( status, "*** test_complex_example pattform" )) {
165 delete fileform;
166 delete filenumform;
167 delete pattform;
168 return;
169 }
170
171 pattform->setFormat( 0, *fileform );
172 pattform->setFormat( 2, *filenumform );
173
174
175 Formattable testArgs[] = {(int32_t)0, "Disk_A", (int32_t)0};
176 UnicodeString str;
177 UnicodeString res1, res2;
178 pattform->toPattern( res1 );
374ca955 179 it_logln("MessageFormat toPattern: " + res1);
b75a7d8f 180 fileform->toPattern( res1 );
374ca955 181 it_logln("ChoiceFormat toPattern: " + res1);
b75a7d8f 182 if (res1 == "-1.0#are corrupted files|0.0#are no files|1.0#is one file|2.0#are {2} files") {
374ca955 183 it_logln("toPattern tested!");
b75a7d8f
A
184 }else{
185 it_errln("*** ChoiceFormat to Pattern result!");
186 }
187
188 FieldPosition fpos(0);
189
190 UnicodeString checkstr[] = {
191 "There are corrupted files on Disk_A",
192 "There are no files on Disk_A",
193 "There is one file on Disk_A",
194 "There are 2 files on Disk_A",
195 "There are 3 files on Disk_A"
196 };
197
198 // if (status != U_ZERO_ERROR) return; // TODO: analyze why we have such a bad bail out here!
199
200 if (U_FAILURE(status)) {
201 delete fileform;
202 delete filenumform;
203 delete pattform;
204 return;
205 }
206
207
208 int32_t i;
209 int32_t start = -1;
210 for (i = start; i < 4; ++i) {
211 str = "";
212 status = U_ZERO_ERROR;
213 testArgs[0] = Formattable((int32_t)i);
214 testArgs[2] = testArgs[0];
215 res2 = pattform->format(testArgs, 3, str, fpos, status );
216 if (!chkstatus( status, "*** test_complex_example format" )) {
217 delete fileform;
218 delete filenumform;
219 delete pattform;
220 return;
221 }
374ca955 222 it_logln(i + UnicodeString(" -> ") + res2);
b75a7d8f
A
223 if (res2 != checkstr[i - start]) {
224 it_errln("*** test_complex_example res string");
374ca955 225 it_errln(UnicodeString("*** ") + i + UnicodeString(" -> '") + res2 + UnicodeString("' unlike '") + checkstr[i] + UnicodeString("' ! "));
b75a7d8f
A
226 }
227 }
374ca955 228 it_logln();
b75a7d8f 229
374ca955
A
230 it_logln("------ additional testing in complex test ------");
231 it_logln();
b75a7d8f
A
232 //
233 int32_t retCount;
234 const double* retLimits = fileform->getLimits( retCount );
235 if ((retCount == 4) && (retLimits)
236 && (retLimits[0] == -1.0)
237 && (retLimits[1] == 0.0)
238 && (retLimits[2] == 1.0)
239 && (retLimits[3] == 2.0)) {
374ca955 240 it_logln("getLimits tested!");
b75a7d8f
A
241 }else{
242 it_errln("*** getLimits unexpected result!");
243 }
244
245 const UnicodeString* retFormats = fileform->getFormats( retCount );
246 if ((retCount == 4) && (retFormats)
247 && (retFormats[0] == "are corrupted files")
248 && (retFormats[1] == "are no files")
249 && (retFormats[2] == "is one file")
250 && (retFormats[3] == "are {2} files")) {
374ca955 251 it_logln("getFormats tested!");
b75a7d8f
A
252 }else{
253 it_errln("*** getFormats unexpected result!");
254 }
255
256 UnicodeString checkstr2[] = {
257 "There is no folder on Disk_A",
258 "There is one folder on Disk_A",
259 "There are many folders on Disk_A",
260 "There are many folders on Disk_A"
261 };
262
263 fileform->applyPattern("0#is no folder|1#is one folder|2#are many folders", status );
374ca955
A
264 if (status == U_ZERO_ERROR)
265 it_logln("status applyPattern OK!");
b75a7d8f
A
266 if (!chkstatus( status, "*** test_complex_example pattform" )) {
267 delete fileform;
268 delete filenumform;
269 delete pattform;
270 return;
271 }
272 pattform->setFormat( 0, *fileform );
273 fpos = 0;
274 for (i = 0; i < 4; ++i) {
275 str = "";
276 status = U_ZERO_ERROR;
277 testArgs[0] = Formattable((int32_t)i);
278 testArgs[2] = testArgs[0];
279 res2 = pattform->format(testArgs, 3, str, fpos, status );
280 if (!chkstatus( status, "*** test_complex_example format 2" )) {
281 delete fileform;
282 delete filenumform;
283 delete pattform;
284 return;
285 }
374ca955 286 it_logln(UnicodeString() + i + UnicodeString(" -> ") + res2);
b75a7d8f
A
287 if (res2 != checkstr2[i]) {
288 it_errln("*** test_complex_example res string");
374ca955 289 it_errln(UnicodeString("*** ") + i + UnicodeString(" -> '") + res2 + UnicodeString("' unlike '") + checkstr2[i] + UnicodeString("' ! "));
b75a7d8f
A
290 }
291 }
292
293 const double limits_A[] = {1,2,3,4,5,6,7};
294 const UnicodeString monthNames_A[] = {"Sun","Mon","Tue","Wed","Thur","Fri","Sat"};
295 ChoiceFormat* form_A = new ChoiceFormat(limits_A, monthNames_A, 7);
296 ChoiceFormat* form_A2 = new ChoiceFormat(limits_A, monthNames_A, 7);
297 const double limits_B[] = {1,2,3,4,5,6,7};
298 const UnicodeString monthNames_B[] = {"Sun","Mon","Tue","Wed","Thur","Fri","Sat_BBB"};
299 ChoiceFormat* form_B = new ChoiceFormat(limits_B, monthNames_B, 7);
300 if (!form_A || !form_B || !form_A2) {
301 it_errln("*** test-choiceFormat not allocatable!");
302 }else{
303 if (*form_A == *form_A2) {
374ca955 304 it_logln("operator== tested.");
b75a7d8f
A
305 }else{
306 it_errln("*** operator==");
307 }
308
309 if (*form_A != *form_B) {
374ca955 310 it_logln("operator!= tested.");
b75a7d8f
A
311 }else{
312 it_errln("*** operator!=");
313 }
314
315 ChoiceFormat* form_A3 = (ChoiceFormat*) form_A->clone();
316 if (!form_A3) {
317 it_errln("*** ChoiceFormat->clone is nil.");
318 }else{
319 if ((*form_A3 == *form_A) && (*form_A3 != *form_B)) {
374ca955 320 it_logln("method clone tested.");
b75a7d8f
A
321 }else{
322 it_errln("*** ChoiceFormat clone or operator==, or operator!= .");
323 }
324 }
325
326 ChoiceFormat form_Assigned( *form_A );
327 UBool ok = (form_Assigned == *form_A) && (form_Assigned != *form_B);
328 form_Assigned = *form_B;
329 ok = ok && (form_Assigned != *form_A) && (form_Assigned == *form_B);
330 if (ok) {
374ca955 331 it_logln("copy constructor and operator= tested.");
b75a7d8f
A
332 }else{
333 it_errln("*** copy constructor or operator= or operator == or operator != .");
334 }
335 delete form_A3;
336 }
337
338
339 delete form_A; delete form_A2; delete form_B;
340
341 const char* testPattern = "0#none|1#one|2#many";
342 ChoiceFormat form_pat( testPattern, status );
343 if (!chkstatus( status, "*** ChoiceFormat contructor( newPattern, status)" )) {
344 delete fileform;
345 delete filenumform;
346 delete pattform;
347 return;
348 }
349
350 form_pat.toPattern( res1 );
351 if (res1 == "0.0#none|1.0#one|2.0#many") {
374ca955 352 it_logln("ChoiceFormat contructor( newPattern, status) tested");
b75a7d8f
A
353 }else{
354 it_errln("*** ChoiceFormat contructor( newPattern, status) or toPattern result!");
355 }
356
357#ifdef U_USE_CHOICE_FORMAT_DEPRECATES
358 double* d_a = (double *)uprv_malloc(2 * sizeof(double));
359 if (!d_a) { it_errln("*** allocation error."); return; }
360 d_a[0] = 1.0; d_a[1] = 2.0;
361
362 UnicodeString* s_a = new UnicodeString[2];
363 if (!s_a) { it_errln("*** allocation error."); return; }
364 s_a[0] = "first"; s_a[1] = "second";
365
366 form_pat.adoptChoices( d_a, s_a, 2 );
367 form_pat.toPattern( res1 );
368 it_out << "ChoiceFormat adoptChoices toPattern: " << res1 << endl;
369 if (res1 == "1.0#first|2.0#second") {
374ca955 370 it_logln("ChoiceFormat adoptChoices tested");
b75a7d8f
A
371 }else{
372 it_errln("*** ChoiceFormat adoptChoices result!");
373 }
374#endif
375
376 double d_a2[] = { 3.0, 4.0 };
377 UnicodeString s_a2[] = { "third", "forth" };
378
379 form_pat.setChoices( d_a2, s_a2, 2 );
380 form_pat.toPattern( res1 );
374ca955 381 it_logln(UnicodeString("ChoiceFormat adoptChoices toPattern: ") + res1);
b75a7d8f 382 if (res1 == "3.0#third|4.0#forth") {
374ca955 383 it_logln("ChoiceFormat adoptChoices tested");
b75a7d8f
A
384 }else{
385 it_errln("*** ChoiceFormat adoptChoices result!");
386 }
387
388 str = "";
389 fpos = 0;
390 status = U_ZERO_ERROR;
391 double arg_double = 3.0;
392 res1 = form_pat.format( arg_double, str, fpos );
374ca955 393 it_logln(UnicodeString("ChoiceFormat format:") + res1);
b75a7d8f
A
394 if (res1 != "third") it_errln("*** ChoiceFormat format (double, ...) result!");
395
396 str = "";
397 fpos = 0;
398 status = U_ZERO_ERROR;
399 int32_t arg_long = 3;
400 res1 = form_pat.format( arg_long, str, fpos );
374ca955 401 it_logln(UnicodeString("ChoiceFormat format:") + res1);
b75a7d8f
A
402 if (res1 != "third") it_errln("*** ChoiceFormat format (int32_t, ...) result!");
403
404 Formattable ft( (int32_t)3 );
405 str = "";
406 fpos = 0;
407 status = U_ZERO_ERROR;
408 res1 = form_pat.format( ft, str, fpos, status );
409 if (!chkstatus( status, "*** test_complex_example format (int32_t, ...)" )) {
410 delete fileform;
411 delete filenumform;
412 delete pattform;
413 return;
414 }
374ca955 415 it_logln(UnicodeString("ChoiceFormat format:") + res1);
b75a7d8f
A
416 if (res1 != "third") it_errln("*** ChoiceFormat format (Formattable, ...) result!");
417
418 Formattable fta[] = { (int32_t)3 };
419 str = "";
420 fpos = 0;
421 status = U_ZERO_ERROR;
422 res1 = form_pat.format( fta, 1, str, fpos, status );
423 if (!chkstatus( status, "*** test_complex_example format (int32_t, ...)" )) {
424 delete fileform;
425 delete filenumform;
426 delete pattform;
427 return;
428 }
374ca955 429 it_logln(UnicodeString("ChoiceFormat format:") + res1);
b75a7d8f
A
430 if (res1 != "third") it_errln("*** ChoiceFormat format (Formattable[], cnt, ...) result!");
431
432 ParsePosition parse_pos = 0;
433 Formattable result;
434 UnicodeString parsetext("third");
435 form_pat.parse( parsetext, result, parse_pos );
436 double rd = (result.getType() == Formattable::kLong) ? result.getLong() : result.getDouble();
437 if (rd == 3.0) {
374ca955 438 it_logln("parse( ..., ParsePos ) tested.");
b75a7d8f
A
439 }else{
440 it_errln("*** ChoiceFormat parse( ..., ParsePos )!");
441 }
442
443 form_pat.parse( parsetext, result, status );
444 rd = (result.getType() == Formattable::kLong) ? result.getLong() : result.getDouble();
445 if (rd == 3.0) {
374ca955 446 it_logln("parse( ..., UErrorCode ) tested.");
b75a7d8f
A
447 }else{
448 it_errln("*** ChoiceFormat parse( ..., UErrorCode )!");
449 }
450
451 /*
452 UClassID classID = ChoiceFormat::getStaticClassID();
453 if (classID == form_pat.getDynamicClassID()) {
454 it_out << "getStaticClassID and getDynamicClassID tested." << endl;
455 }else{
456 it_errln("*** getStaticClassID and getDynamicClassID!");
457 }
458 */
459
374ca955 460 it_logln();
b75a7d8f
A
461
462 delete fileform;
463 delete filenumform;
464 delete pattform;
465}
466
467
468/**
469 * Test new closure API
470 */
471void TestChoiceFormat::TestClosures(void) {
472 // Construct open, half-open, half-open (the other way), and closed
473 // intervals. Do this both using arrays and using a pattern.
474
475 // 'fmt1' is created using arrays
476 UBool T = TRUE, F = FALSE;
477 // 0: ,1)
478 // 1: [1,2]
479 // 2: (2,3]
480 // 3: (3,4)
481 // 4: [4,5)
482 // 5: [5,
483 double limits[] = { 0, 1, 2, 3, 4, 5 };
484 UBool closures[] = { F, F, T, T, F, F };
485 UnicodeString fmts[] = {
486 ",1)", "[1,2]", "(2,3]", "(3,4)", "[4,5)", "[5,"
487 };
488 ChoiceFormat fmt1(limits, closures, fmts, 6);
489
490 // 'fmt2' is created using a pattern; it should be equivalent
491 UErrorCode status = U_ZERO_ERROR;
492 const char* PAT = "0.0#,1)|1.0#[1,2]|2.0<(2,3]|3.0<(3,4)|4.0#[4,5)|5.0#[5,";
493 ChoiceFormat fmt2(PAT, status);
494 if (U_FAILURE(status)) {
495 errln("FAIL: ChoiceFormat constructor failed");
496 return;
497 }
498
499 // Check the patterns
500 UnicodeString str;
501 fmt1.toPattern(str);
502 if (str == PAT) {
503 logln("Ok: " + str);
504 } else {
505 errln("FAIL: " + str + ", expected " + PAT);
506 }
507 str.truncate(0);
508
509 // Check equality
510 if (fmt1 != fmt2) {
511 errln("FAIL: fmt1 != fmt2");
512 }
513
514 int32_t i;
515 int32_t count2 = 0;
516 const double *limits2 = fmt2.getLimits(count2);
517 const UBool *closures2 = fmt2.getClosures(count2);
518
519 if((count2 != 6) || !limits2 || !closures2) {
520 errln("FAIL: couldn't get limits or closures");
521 } else {
522 for(i=0;i<count2;i++) {
523 logln("#%d/%d: limit %g closed %s\n",
524 i, count2,
525 limits2[i],
526 closures2[i] ?"T":"F");
527 if(limits2[i] != limits[i]) {
528 errln("FAIL: limit #%d = %g, should be %g\n", i, limits2[i], limits[i]);
529 }
530 if((closures2[i]!=0) != (closures[i]!=0)) {
531 errln("FAIL: closure #%d = %s, should be %s\n", i, closures2[i]?"T":"F", closures[i]?"T":"F");
532 }
533 }
534 }
535
536 // Now test both format objects
537 UnicodeString exp[] = {
538 /*-0.5 => */ ",1)",
539 /* 0.0 => */ ",1)",
540 /* 0.5 => */ ",1)",
541 /* 1.0 => */ "[1,2]",
542 /* 1.5 => */ "[1,2]",
543 /* 2.0 => */ "[1,2]",
544 /* 2.5 => */ "(2,3]",
545 /* 3.0 => */ "(2,3]",
546 /* 3.5 => */ "(3,4)",
547 /* 4.0 => */ "[4,5)",
548 /* 4.5 => */ "[4,5)",
549 /* 5.0 => */ "[5,",
550 /* 5.5 => */ "[5,"
551 };
552
553 // Each format object should behave exactly the same
554 ChoiceFormat* FMT[] = { &fmt1, &fmt2 };
555 for (int32_t pass=0; pass<2; ++pass) {
556 int32_t j=0;
557 for (int32_t ix=-5; ix<=55; ix+=5) {
558 double x = ix / 10.0; // -0.5 to 5.5 step +0.5
559 FMT[pass]->format(x, str);
560 if (str == exp[j]) {
561 logln((UnicodeString)"Ok: " + x + " => " + str);
562 } else {
563 errln((UnicodeString)"FAIL: " + x + " => " + str +
564 ", expected " + exp[j]);
565 }
566 str.truncate(0);
567 ++j;
568 }
569 }
570}
571
572/**
573 * Helper for TestPatterns()
574 */
575void TestChoiceFormat::_testPattern(const char* pattern,
576 UBool isValid,
577 double v1, const char* str1,
578 double v2, const char* str2,
579 double v3, const char* str3) {
580 UErrorCode ec = U_ZERO_ERROR;
581 ChoiceFormat fmt(pattern, ec);
582 if (!isValid) {
583 if (U_FAILURE(ec)) {
584 logln((UnicodeString)"Ok: " + pattern + " failed");
585 } else {
586 logln((UnicodeString)"FAIL: " + pattern + " accepted");
587 }
588 return;
589 }
590 if (U_FAILURE(ec)) {
591 errln((UnicodeString)"FAIL: ChoiceFormat(" + pattern + ") failed");
592 return;
593 } else {
594 logln((UnicodeString)"Ok: Pattern: " + pattern);
595 }
596 UnicodeString out;
597 logln((UnicodeString)" toPattern: " + fmt.toPattern(out));
598
599 double v[] = {v1, v2, v3};
600 const char* str[] = {str1, str2, str3};
601 for (int32_t i=0; i<3; ++i) {
602 out.truncate(0);
603 fmt.format(v[i], out);
604 if (out == str[i]) {
605 logln((UnicodeString)"Ok: " + v[i] + " => " + out);
606 } else {
607 errln((UnicodeString)"FAIL: " + v[i] + " => " + out +
608 ", expected " + str[i]);
609 }
610 }
611}
612
613/**
614 * Test applyPattern
615 */
616void TestChoiceFormat::TestPatterns(void) {
617 // Try a pattern that isolates a single value. Create
618 // three ranges: [-Inf,1.0) [1.0,1.0] (1.0,+Inf]
619 _testPattern("0.0#a|1.0#b|1.0<c", TRUE,
620 1.0 - 1e-9, "a",
621 1.0, "b",
622 1.0 + 1e-9, "c");
623
624 // Try an invalid pattern that isolates a single value.
625 // [-Inf,1.0) [1.0,1.0) [1.0,+Inf]
626 _testPattern("0.0#a|1.0#b|1.0#c", FALSE,
627 0, 0, 0, 0, 0, 0);
628
629 // Another
630 // [-Inf,1.0] (1.0,1.0) [1.0,+Inf]
631 _testPattern("0.0#a|1.0<b|1.0#c", FALSE,
632 0, 0, 0, 0, 0, 0);
633 // Another
634 // [-Inf,1.0] (1.0,1.0] (1.0,+Inf]
635 _testPattern("0.0#a|1.0<b|1.0<c", FALSE,
636 0, 0, 0, 0, 0, 0);
637
638 // Try a grossly invalid pattern.
639 // [-Inf,2.0) [2.0,1.0) [1.0,+Inf]
640 _testPattern("0.0#a|2.0#b|1.0#c", FALSE,
641 0, 0, 0, 0, 0, 0);
642}
643
644#endif /* #if !UCONFIG_NO_FORMATTING */