OLD | NEW |
1 /******************************************************************** | 1 /******************************************************************** |
2 * COPYRIGHT: | 2 * COPYRIGHT: |
3 * Copyright (c) 1997-2010, International Business Machines Corporation and | 3 * Copyright (c) 1997-2010, International Business Machines Corporation and |
4 * others. All Rights Reserved. | 4 * others. All Rights Reserved. |
5 * Copyright (C) 2010 , Yahoo! Inc. | 5 * Copyright (C) 2010 , Yahoo! Inc. |
6 ********************************************************************/ | 6 ********************************************************************/ |
7 | 7 |
8 #include <stdio.h> | 8 #include <stdio.h> |
9 #include <string.h> | 9 #include <string.h> |
10 #include <typeinfo> // for 'typeid' to work | |
11 | 10 |
12 #include "uobjtest.h" | 11 #include "uobjtest.h" |
13 #include "cmemory.h" // UAlignedMemory | 12 #include "cmemory.h" // UAlignedMemory |
14 | 13 |
15 /** | 14 /** |
16 * Test for UObject, currently only the classID. | 15 * Test for UObject, currently only the classID. |
17 * | 16 * |
18 * Usage | 17 * Usage |
19 * TESTCLASSID_NONE_DEFAULT(Foo) | 18 * TESTCLASSID_NONE_DEFAULT(Foo) |
20 * -- Foo is expected to not support "poor man's RTTI". | 19 * -- Foo is expected to not support "poor man's RTTI". |
(...skipping 540 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
561 #endif | 560 #endif |
562 } | 561 } |
563 | 562 |
564 void UObjectTest::TestCompilerRTTI() { | 563 void UObjectTest::TestCompilerRTTI() { |
565 UErrorCode errorCode = U_ZERO_ERROR; | 564 UErrorCode errorCode = U_ZERO_ERROR; |
566 NumberFormat *nf = NumberFormat::createInstance("de", errorCode); | 565 NumberFormat *nf = NumberFormat::createInstance("de", errorCode); |
567 if (U_FAILURE(errorCode)) { | 566 if (U_FAILURE(errorCode)) { |
568 dataerrln("NumberFormat::createInstance(de) failed - %s", u_errorName(er
rorCode)); | 567 dataerrln("NumberFormat::createInstance(de) failed - %s", u_errorName(er
rorCode)); |
569 return; | 568 return; |
570 } | 569 } |
571 if (dynamic_cast<DecimalFormat *>(nf) == NULL || dynamic_cast<ChoiceFormat *
>(nf) != NULL) { | 570 if (CR_DYNAMIC_CAST<DecimalFormat *>(nf) == NULL || CR_DYNAMIC_CAST<ChoiceFo
rmat *>(nf) != NULL) { |
572 errln("dynamic_cast<>(NumberFormat) failed"); | 571 errln("CR_DYNAMIC_CAST<>(NumberFormat) failed"); |
573 } | 572 } |
574 UnicodeSet emptySet; | 573 UnicodeSet emptySet; |
575 if (&typeid(*nf) == NULL || typeid(*nf) == typeid(UObject) || typeid(*nf) ==
typeid(Format) || | 574 if (&CR_TYPEID(*nf) == NULL || CR_TYPEID(*nf) == CR_TYPEID(UObject) || CR_TY
PEID(*nf) == CR_TYPEID(Format) || |
576 typeid(*nf) != typeid(DecimalFormat) || typeid(*nf) == typeid(ChoiceForm
at) || | 575 CR_TYPEID(*nf) != CR_TYPEID(DecimalFormat) || CR_TYPEID(*nf) == CR_TYPEI
D(ChoiceFormat) || |
577 typeid(*nf) == typeid(emptySet) | 576 CR_TYPEID(*nf) == CR_TYPEID(emptySet) |
578 ) { | 577 ) { |
579 errln("typeid(NumberFormat) failed"); | 578 errln("CR_TYPEID(NumberFormat) failed"); |
580 } | 579 } |
581 delete nf; | 580 delete nf; |
582 } | 581 } |
583 | 582 |
584 /* --------------- */ | 583 /* --------------- */ |
585 | 584 |
586 void UObjectTest::runIndexedTest( int32_t index, UBool exec, const char* &name,
char* /* par */ ) | 585 void UObjectTest::runIndexedTest( int32_t index, UBool exec, const char* &name,
char* /* par */ ) |
587 { | 586 { |
588 switch (index) { | 587 switch (index) { |
589 | 588 |
590 TESTCASE(0, testIDs); | 589 TESTCASE(0, testIDs); |
591 TESTCASE(1, testUMemory); | 590 TESTCASE(1, testUMemory); |
592 TESTCASE(2, TestMFCCompatibility); | 591 TESTCASE(2, TestMFCCompatibility); |
593 TESTCASE(3, TestCompilerRTTI); | 592 TESTCASE(3, TestCompilerRTTI); |
594 | 593 |
595 default: name = ""; break; //needed to end loop | 594 default: name = ""; break; //needed to end loop |
596 } | 595 } |
597 } | 596 } |
OLD | NEW |