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__
29 TPtrC8 myTptr8 = buf.Des();
30 wchar_t* myWchar = L"no_worth_purpose";
31 char* temp = new char[15];
32 retval[0] = WcharpToTptrc8(myWchar,temp,myTptr8);
35 retval[1] = Tptrc8ToWstring(myTptr8,myWstring);
38 TPtrC16 myTptr16 = tbuf.Des();
39 retval[2] = WstringToTptrc16(myWstring,myTptr16);
41 char* myChar = new char[40];
43 retval[3] = Tptrc16ToCharp(myTptr16,myChar,size);
46 TPtr8 myTptr = buf8.Des();
47 retval[4] = CharpToTptr8(myChar,myTptr);
49 wchar_t* Wstr_fin = new wchar_t[36];
51 retval[5] = Tptr8ToWcharp(myTptr,Wstr_fin,size_char);
53 for(int i=1; i<=5; i++)
56 printf("Conversion failed for retval\n",retval[i]);
59 if(!wcscmp(myWchar,Wstr_fin))
61 printf("\n\nintegration_test_scenario23 case passed");
65 printf("\n\nintegration_test_scenario23 case failed");
73 testResultXml("integration_test_scenario23");