sl@0: /* sl@0: * Copyright (c) 2010 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: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: RTest TheTest(_L("TestJPLangUtil")); sl@0: sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: /////////////////////////////////////////////////////////////////////////////////////// sl@0: //Tests macroses and functions. sl@0: //If (!aValue) then the test will be panicked, the test data files will be deleted. sl@0: static void Check(TInt aValue, TInt aLine) sl@0: { sl@0: if(!aValue) sl@0: { sl@0: TheTest(EFalse, aLine); sl@0: } sl@0: } sl@0: //If (aValue != aExpected) then the test will be panicked, the test data files will be deleted. sl@0: static void Check(TInt aValue, TInt aExpected, TInt aLine) sl@0: { sl@0: if(aValue != aExpected) sl@0: { sl@0: RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue); sl@0: TheTest(EFalse, aLine); sl@0: } sl@0: } sl@0: sl@0: //Use these to test conditions. sl@0: #define TEST(arg) ::Check((arg), __LINE__) sl@0: #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__) sl@0: sl@0: const TInt KDesLength = 24; sl@0: _LIT( KText, "Text" ); sl@0: sl@0: LOCAL_C void TestJLUConvertHalfToFullWidth() sl@0: { sl@0: TBuf unisrc( KText ); sl@0: TBuf unides; sl@0: TInt status = JPLangUtil::ConvertHalfToFullWidth( unisrc, unides ); sl@0: TEST(status == 4); sl@0: } sl@0: sl@0: LOCAL_C void TestJLUConvertFullToHalfWidth() sl@0: { sl@0: TBuf unisrc( KText ); sl@0: TBuf unides; sl@0: TInt status = JPLangUtil::ConvertFullToHalfWidth( unisrc, unides ); sl@0: TEST(status == 0); sl@0: } sl@0: sl@0: LOCAL_C void DoE32MainL() sl@0: { sl@0: TheTest.Start(_L("TestJPLangUtil:\n")); sl@0: sl@0: TestJLUConvertHalfToFullWidth(); sl@0: TestJLUConvertFullToHalfWidth(); sl@0: } sl@0: sl@0: // Global Functions sl@0: sl@0: GLDEF_C TInt E32Main() sl@0: { sl@0: __UHEAP_MARK; sl@0: sl@0: TheTest.Title(); sl@0: sl@0: CTrapCleanup* trapCleanup=CTrapCleanup::New(); sl@0: TEST(trapCleanup != NULL); sl@0: sl@0: TRAPD(error, DoE32MainL()); sl@0: TEST2(error, KErrNone); sl@0: sl@0: delete trapCleanup; sl@0: sl@0: TheTest.End(); sl@0: TheTest.Close(); sl@0: sl@0: __UHEAP_MARKEND; sl@0: return KErrNone; sl@0: }