| 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 * Modification History: | 5 * Modification History: |
| 6 * | 6 * |
| 7 * Date Name Description | 7 * Date Name Description |
| 8 * 05/22/2000 Madhu Added tests for testing new API for utf16 support
and more | 8 * 05/22/2000 Madhu Added tests for testing new API for utf16 support
and more |
| 9 *******************************************************************************
*********/ | 9 *******************************************************************************
*********/ |
| 10 | 10 |
| 11 #include <string.h> | 11 #include <string.h> |
| 12 #include <typeinfo> // for 'typeid' to work | 12 #include "unicode/utypeinfo.h" // for 'typeid' to work |
| 13 | 13 |
| 14 #include "unicode/chariter.h" | 14 #include "unicode/chariter.h" |
| 15 #include "unicode/ustring.h" | 15 #include "unicode/ustring.h" |
| 16 #include "unicode/unistr.h" | 16 #include "unicode/unistr.h" |
| 17 #include "unicode/schriter.h" | 17 #include "unicode/schriter.h" |
| 18 #include "unicode/uchriter.h" | 18 #include "unicode/uchriter.h" |
| 19 #include "unicode/uiter.h" | 19 #include "unicode/uiter.h" |
| 20 #include "unicode/putil.h" | 20 #include "unicode/putil.h" |
| 21 #include "citrtest.h" | 21 #include "citrtest.h" |
| 22 | 22 |
| (...skipping 1155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1178 if(sci.firstPostInc()!=0x61) { | 1178 if(sci.firstPostInc()!=0x61) { |
| 1179 errln("SubStringCharIter.firstPostInc() failed\n"); | 1179 errln("SubStringCharIter.firstPostInc() failed\n"); |
| 1180 } | 1180 } |
| 1181 | 1181 |
| 1182 // coverage: UCharCharacterIterator default constructor | 1182 // coverage: UCharCharacterIterator default constructor |
| 1183 SubUCharCharIter uci; | 1183 SubUCharCharIter uci; |
| 1184 if(uci.firstPostInc()!=0x61) { | 1184 if(uci.firstPostInc()!=0x61) { |
| 1185 errln("SubUCharCharIter.firstPostInc() failed\n"); | 1185 errln("SubUCharCharIter.firstPostInc() failed\n"); |
| 1186 } | 1186 } |
| 1187 } | 1187 } |
| OLD | NEW |