utilitylibraries/libutils/tsrc/src/test_wchartorbuf16_content_check.cpp
changeset 0 e4d67989cc36
child 22 ddc455616bd6
child 56 acd3cd4aaceb
equal deleted inserted replaced
-1:000000000000 0:e4d67989cc36
       
     1 /*
       
     2 * Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     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".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:
       
    15 *
       
    16 */
       
    17 
       
    18 #include <e32base.h>
       
    19 #include <stdio.h>
       
    20 #include<e32std.h>
       
    21 #include "libutils.h"
       
    22 #include"std_log_result.h"
       
    23 #define LOG_FILENAME_LINE __FILE__, __LINE__
       
    24 void main()
       
    25 {
       
    26     __UHEAP_MARK;
       
    27     int retval =ESuccess;
       
    28     wchar_t* mywcharstring = L"Hello Widechar String";
       
    29     int wchar_length= wcslen(mywcharstring);
       
    30     RBuf16 myRBuf;
       
    31     myRBuf.CleanupClosePushL();
       
    32     retval = WcharToRbuf16(mywcharstring, myRBuf);
       
    33 
       
    34     int buf_len = myRBuf.Length();
       
    35     if (retval ==ESuccess &&\
       
    36     wchar_length == buf_len &&\
       
    37     wcsncmp(L"Hello Widechar String",(wchar_t*)myRBuf.Ptr() , 21) ==0 )
       
    38     {
       
    39     printf("wchartorbuf16 content check Passed\n");
       
    40     }
       
    41     else
       
    42     {
       
    43     assert_failed = true;
       
    44     printf("wchartorbuf16 content check Failed\n");
       
    45     }     
       
    46     CleanupStack::PopAndDestroy(1); 
       
    47     __UHEAP_MARKEND;
       
    48     testResultXml("test_wchartorbuf16_content_check");
       
    49 }