utilitylibraries/libutils/tsrc/src/test_tptr8towstring_content_check.cpp
changeset 22 ddc455616bd6
parent 0 e4d67989cc36
child 45 4b03adbd26ca
child 57 2efc27d87e1c
equal deleted inserted replaced
18:47c74d1534e1 22:ddc455616bd6
    18 #include <stdio.h>
    18 #include <stdio.h>
    19 #include<e32std.h>
    19 #include<e32std.h>
    20 #include "libutils.h"
    20 #include "libutils.h"
    21 #include"std_log_result.h"
    21 #include"std_log_result.h"
    22 #define LOG_FILENAME_LINE __FILE__, __LINE__
    22 #define LOG_FILENAME_LINE __FILE__, __LINE__
    23 void main()
    23 int main()
    24 {
    24 {
    25     wstring des((const wchar_t*)"hellohello") ;
    25     wstring des((const wchar_t*)"hellohello") ;
    26     __UHEAP_MARK; 
    26     __UHEAP_MARK; 
    27     TPtr8  src((unsigned char *)"My wide string",14, 30);
    27     TPtr8  src((unsigned char *)"My wide string",14, 30);
    28     int retval=ESuccess;
    28     int retval=ESuccess;
    29     int size=30;
    29     //int size=30;
    30     retval= Tptr8ToWstring(src,des);
    30     retval= Tptr8ToWstring(src,des);
    31 
    31 
    32     if(retval ==ESuccess && wcscmp(L"My wide string",des.c_str()) == 0 )
    32     if(retval ==ESuccess && wcscmp(L"My wide string",des.c_str()) == 0 )
    33     {
    33     {
    34     printf("Test tptr8towstring content check passed\n");
    34     printf("Test tptr8towstring content check passed\n");
    38     assert_failed = true;
    38     assert_failed = true;
    39     printf("Test tptr8towstring content check FAILURE\n");
    39     printf("Test tptr8towstring content check FAILURE\n");
    40     }	
    40     }	
    41     __UHEAP_MARKEND;
    41     __UHEAP_MARKEND;
    42     testResultXml("test_tptr8towstring_content_check");
    42     testResultXml("test_tptr8towstring_content_check");
       
    43 	
       
    44 	return 0;
    43 }
    45 }