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__
28 wchar_t* mycharstring = L"hello";
31 retval[0]= WcharToRbuf16(mycharstring,buf);
34 retval[1]= Rbuf16ToWstring(buf,str);
36 TPtr8 tptr8((unsigned char*)"",10,20);
37 char* temp_c = new char[20];
38 retval[2]= WstringToTptr8(str,temp_c,tptr8);
40 char* mychar = new char[30];
42 retval[3]= Tptr8ToChar(tptr8,mychar,size);
44 HBufC16 *hbufc = HBufC16::NewMaxL(20);
45 retval[4]= CharToHbufc16(mychar,hbufc);
49 retval[5]= Hbufc16ToString(hbufc,mystring,size_hbufc);
51 wchar_t* temp = new wchar_t[50];
53 retval[6]= StringToTptrc16(mystring,temp,tptrc);
55 for(int i=1; i<=6; i++)
58 printf("Conversion failed for retval\n",retval[i]);
61 wchar_t* myfinalstring = new wchar_t[50];
63 retval[7]= Tptrc16ToWcharp(tptrc,myfinalstring,size_fin);
65 if(!wcsncmp(mycharstring,myfinalstring,5))
67 printf("\nintegration_test_scenario20 case passed");
71 printf("\nintegration_test_scenario20 case failed");
79 delete[] myfinalstring;
82 testResultXml("integration_test_scenario20");