Update contrib.
2 * Copyright (c) 2010 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.
22 #include <jplangutil.h>
24 ///////////////////////////////////////////////////////////////////////////////////////
25 RTest TheTest(_L("TestJPLangUtil"));
27 ///////////////////////////////////////////////////////////////////////////////////////
28 ///////////////////////////////////////////////////////////////////////////////////////
29 //Tests macroses and functions.
30 //If (!aValue) then the test will be panicked, the test data files will be deleted.
31 static void Check(TInt aValue, TInt aLine)
35 TheTest(EFalse, aLine);
38 //If (aValue != aExpected) then the test will be panicked, the test data files will be deleted.
39 static void Check(TInt aValue, TInt aExpected, TInt aLine)
41 if(aValue != aExpected)
43 RDebug::Print(_L("*** Expected error: %d, got: %d\r\n"), aExpected, aValue);
44 TheTest(EFalse, aLine);
48 //Use these to test conditions.
49 #define TEST(arg) ::Check((arg), __LINE__)
50 #define TEST2(aValue, aExpected) ::Check(aValue, aExpected, __LINE__)
52 const TInt KDesLength = 24;
53 _LIT( KText, "Text" );
55 LOCAL_C void TestJLUConvertHalfToFullWidth()
57 TBuf<KDesLength> unisrc( KText );
58 TBuf<KDesLength> unides;
59 TInt status = JPLangUtil::ConvertHalfToFullWidth( unisrc, unides );
63 LOCAL_C void TestJLUConvertFullToHalfWidth()
65 TBuf<KDesLength> unisrc( KText );
66 TBuf<KDesLength> unides;
67 TInt status = JPLangUtil::ConvertFullToHalfWidth( unisrc, unides );
71 LOCAL_C void DoE32MainL()
73 TheTest.Start(_L("TestJPLangUtil:\n"));
75 TestJLUConvertHalfToFullWidth();
76 TestJLUConvertFullToHalfWidth();
81 GLDEF_C TInt E32Main()
87 CTrapCleanup* trapCleanup=CTrapCleanup::New();
88 TEST(trapCleanup != NULL);
90 TRAPD(error, DoE32MainL());
91 TEST2(error, KErrNone);