sl@0: /* sl@0: * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: #include sl@0: #include sl@0: #include "libutils.h" sl@0: #include"std_log_result.h" sl@0: #define LOG_FILENAME_LINE __FILE__, __LINE__ sl@0: int main() sl@0: { sl@0: __UHEAP_MARK; sl@0: { sl@0: TBufC8<10> src1((unsigned char*)"testing"); sl@0: char * des1= new char[10]; sl@0: int size1=50,ret,retval1,retval2,retval3,retval4,retval5; sl@0: retval1= Tbufc8ToChar(src1,des1,size1); sl@0: printf("retval1 value is %d\n", retval1); sl@0: sl@0: char * src2= des1; sl@0: TPtr16 des2 ((unsigned short*)" ",30); sl@0: wchar_t *aPtr = new wchar_t[50]; sl@0: retval2= CharpToTptr16(src2,des2); sl@0: printf("retval2 value is %d\n", retval2); sl@0: sl@0: TPtr16 src3= des2; sl@0: string des3; sl@0: retval3= Tptr16ToString(src3,des3); sl@0: printf("retval3 value is %d\n", retval3); sl@0: sl@0: string src4= des3; sl@0: RBuf16 des4; sl@0: des4.CreateL(30); sl@0: retval4= StringToRbuf16(src4,des4); sl@0: printf("retval4 value is %d\n", retval4); sl@0: sl@0: RBuf16 src5; sl@0: src5.Create(des4); sl@0: char *des5= new char [50]; sl@0: retval5 = Rbuf16ToChar(src5,des5,size1); sl@0: printf("retval5 value is %d\n", retval5); sl@0: sl@0: ret= strncmp("testing",(char*)des5,7); sl@0: if(ret == ESuccess) sl@0: { sl@0: printf("integration_test8 PASSED\n"); sl@0: } sl@0: else sl@0: { sl@0: printf("integration_test8 FAILED\n"); sl@0: assert_failed=true; sl@0: } sl@0: delete[] des5; sl@0: des4.Close(); sl@0: src5.Close(); sl@0: delete[] aPtr; sl@0: delete[] des1; sl@0: } sl@0: __UHEAP_MARKEND; sl@0: testResultXml("integration_test_scenario8"); sl@0: return 0; sl@0: }