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__
27 string str1("Integration test");
29 int retval1 = 0, retval2 = 0,retval3 = 0,retval4,retval5,retval6;
31 retval1 = StringToTptrc8(str1, buf1);
32 printf("retval1 value is %d\n", retval1);
35 char *des1= new char[20];
37 retval2= Tptrc8ToCharp(src1,des1,size1);
38 printf("retval2 value is %d\n", retval2);
42 retval3 = CharToTbuf8 (src2, des2);
43 printf("retval3 value is %d\n", retval3);
46 wchar_t * des3= new wchar_t [20];
48 retval4= Tbuf8ToWchar(src3,des3,size2);
49 printf("retval4 value is %d\n", retval4);
53 char *size = new char[2*wcslen(src4)];
54 retval5 = WcharpToTptrc8(src4, size ,des4);
55 printf("retval5 value is %d\n", retval5);
59 retval6 = Tptrc8ToString(src5, str2);
60 printf("retval6 value is %d\n", retval6);
62 ret= strncmp((char *)str1.c_str(),(char *)str2.c_str(),11);
65 printf("integration_test1 passed\n");
69 printf("integration_test1 failed\n");
77 testResultXml("integration_test_scenario1");