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__
26 HBufC8 *des1= HBufC8::NewMaxL(20);
27 int ret,retval1,retval2,retval3,retval4,retval5,retval6;
28 int /*size1=20,*/size2=20,size3=20;
31 retval1= CharToHbufc8(src1,des1);
32 printf("retval1 value is %d\n", retval1);
36 retval2= Hbufc8ToString(src2,des2);
37 printf("retval2 value is %d\n", retval2);
40 TPtr8 des3((unsigned char *)" ",20);
41 retval3 = StringToTptr8(src3, des3);
42 printf("retval3 value is %d\n", retval3);
45 wchar_t *des4= new wchar_t[42];
46 retval4= Tptr8ToWcharp(src4,des4,size2);
47 printf("retval4 value is %d\n", retval4);
50 TPtr8 des5((unsigned char*)" ",42);
51 char * cPtr= new char[30];
52 retval5=WcharpToTptr8(src5,cPtr,des5);
53 printf("retval5 value is %d\n", retval5);
56 char *des6= new char[42];
57 retval6= Tptr8ToChar(src6,des6,size3);
58 printf("retval6 value is %d\n", retval6);
60 ret= strncmp((char*)src1,(char*)des6,4);
63 printf("integration_test3 passed\n");
67 printf("integration_test3 failed\n");
78 testResultXml("integration_test_scenario3");