Update contrib.
1 // Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #undef G_DISABLE_ASSERT
21 #define LOG_FILE "c:\\logs\\unichar_test_log.txt"
22 #include "std_log_result.h"
23 #define LOG_FILENAME_LINE __FILE__, __LINE__
25 void create_xml(int result)
30 testResultXml("unichar_testlog");
34 int main (int argc, char *argv[])
37 gunichar mark = 0x0BCA; //spacing mark. Tamil letter.
38 gunichar title = 0x01F2; //Latin letter.
39 gunichar square = 0x25A1; //white square
40 gunichar space = 0x200B; //zero width space
41 gunichar tel_symbol = 0x32C0; //telegraphic symbol for january
42 gunichar CR = 0x000D; //carriage return
43 GUnicodeBreakType type;
45 g_unichar_get_mirror_char('(', &ret);
49 std_log(LOG_FILENAME_LINE,"g_unichar_get_mirror_char didnt work as expected");
54 if(!g_unichar_ismark(mark))
56 std_log(LOG_FILENAME_LINE,"g_unichar_ismark didnt work as expected");
60 if(!g_unichar_istitle(title))
62 std_log(LOG_FILENAME_LINE,"g_unichar_istitle didnt work as expected");
66 if(!g_unichar_isdefined(square))
68 std_log(LOG_FILENAME_LINE,"g_unichar_isdefined didnt work as expected");
72 if(!g_unichar_iszerowidth(space))
74 std_log(LOG_FILENAME_LINE,"g_unichar_iszerowidth didnt work as expected");
78 if(!g_unichar_iswide(tel_symbol))
80 std_log(LOG_FILENAME_LINE,"g_unichar_iswide didnt work as expected");
84 if(!g_unichar_iswide_cjk(tel_symbol))
86 std_log(LOG_FILENAME_LINE,"g_unichar_iswide_cjk didnt work as expected");
90 ret = g_unichar_totitle('a');
93 std_log(LOG_FILENAME_LINE,"g_unichar_totitle didnt work as expected");
97 type = g_unichar_break_type(CR);
98 if(type != G_UNICODE_BREAK_CARRIAGE_RETURN)
100 std_log(LOG_FILENAME_LINE,"g_unichar_break_type didnt work as expected");
105 std_log(LOG_FILENAME_LINE,"Test Failed");
107 std_log(LOG_FILENAME_LINE,"Test Successful");