First public contribution.
1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Tests for RString, RstringF, RStringTokenF and RStringToken class
21 #include <stringpool.h>
22 #include "stringtablef.h"
23 #include "stringtablec.h"
25 RTest test(_L("T_String"));
28 @SYMTestCaseID SYSLIB-BAFL-UT-1708
29 @SYMTestCaseDesc Testing the functions of RString, RstringF, RStringTokenF and RStringToken class
30 Tests for RString::Copy(), RString::operator RStringToken(), RString::operator!=(), RString::operator==().Tests the same functions of the other classes specified above.
31 @SYMTestPriority Medium
32 @SYMTestActions Tests by first creating the string table for case-sensitive and case-insensitive strings and then comparing the data in the tables
33 @SYMTestExpectedResults Tests must not fail
40 pool.OpenL(StringTableF::Table);
42 test.Printf(_L("Test for RStringF: case-insensitive strings"));
44 RStringF objF1 = pool.StringF(StringTableF::EBanana,StringTableF::Table);
46 buf.Copy(objF1.DesC());
49 RStringF objF2 = pool.OpenFStringL(_L8("Apple"));
51 test(!(objF1==objF2));
55 test(!(objF1!=objF2));
57 test.Next(_L("Test for RStringTokenF"));
59 RStringTokenF objF3 = objF2;
62 test.Next(_L("Test for RString: case-sensitive strings'"));
64 pool.OpenL(StringTableC::Table);
65 RString objC1 = pool.String(StringTableC::EApple,StringTableC::Table);
67 RString objC2 = pool.OpenStringL(_L8("BaNana"));
68 test(!(objC1==objC2));
71 RString objC3 = objC2.Copy();
72 test(!(objC3!=objC2));
76 test.Printf(_L("Test for RStringToken"));
78 RStringToken objC4 = objC3;
80 test(!(objC4==objC1));
95 CTrapCleanup* cleanup=CTrapCleanup::New();
101 test.Start(_L("String Tests"));
102 TRAPD(error,DoTestsL());
103 test( error == KErrNone );