First public contribution.
2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
21 #include"std_log_result.h"
22 #define LOG_FILENAME_LINE __FILE__, __LINE__
30 _LIT8(Ktext_rbuf,"hello hi");
31 rbuf.CreateL(Ktext_rbuf,size);
32 wchar_t* myWchar = new wchar_t[10];
33 retval[0] = Rbuf8ToWchar(rbuf,myWchar,size);
36 TPtrC8 myTptr8 = buf.Des();
37 char* temp = new char[15];
38 retval[0] = WcharpToTptrc8(myWchar,temp,myTptr8);
40 wstring myWstring(L"gdfgdsgghdfssfsafdsf");
41 retval[1] = Tptrc8ToWstring(myTptr8,myWstring);
44 TPtrC16 myTptr16 = tbuf.Des();
45 retval[2] = WstringToTptrc16(myWstring,myTptr16);
47 char* myChar = new char[40];
49 retval[3] = Tptrc16ToCharp(myTptr16,myChar,size_new);
52 TPtr8 myTptr = buf8.Des();
53 retval[4] = CharpToTptr8(myChar,myTptr);
55 wchar_t* Wstr_fin = new wchar_t[36];
57 retval[5] = Tptr8ToWcharp(myTptr,Wstr_fin,size_char);
59 for(int i=1; i<=5; i++)
62 printf("Conversion failed for retval\n",retval[i]);
65 if(!wcscmp(myWchar,Wstr_fin))
67 printf("\n\nintegration_test_scenario24 case passed");
71 printf("\n\nintegration_test_scenario24 case failed");
81 testResultXml("integration_test_scenario24");