Update contrib.
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 CPtrC8Array and TKeyDesC8Array class(Test Improvement activity)
21 RTest test(_L("T_PTRCB"));
24 @SYMTestCaseID SYSLIB-BAFL-UT-1706
25 @SYMTestCaseDesc Testing 8-bit descriptor arrays
26 Tests for CPtrC8Array::MdcaCount(),CPtrC8Array::CopyL(),CPtrC8Array::operator =() functions
27 @SYMTestPriority Medium
28 @SYMTestActions Tests by adding descriptors to CDesC8Array and then copying to CPtrC8Array
29 @SYMTestExpectedResults Tests must not fail
35 test.Next(_L("Test for ptrC8 and desC8 arrays"));
37 CPtrC8Array* ptrB = new(ELeave) CPtrC8Array(8);
38 CDesC8Array* desB = new(ELeave) CDesC8ArrayFlat(8);
40 desB->AppendL(_L8("one"));
41 desB->AppendL(_L8("two"));
42 desB->AppendL(_L8("three"));
44 // calling CPtrC8Array::CopyL() with an overloaded '=' operator
48 test(ptrB->MdcaCount()==desB->MdcaCount());
49 test(ptrB->MdcaPoint(2)==desB->MdcaPoint(2));
51 test.Next(_L("Test for covering case ECmpCollated8 for TKeyDesC8Array class"));
53 TInt pos = desB->InsertIsqAllowDuplicatesL(_L8("hello"));
54 test(desB->MdcaCount()==4);
56 // Invoking TKeyDesC8Array::Compare(), covers ECmpCollated8 case inside switch statement
58 desB->Sort(ECmpCollated8);
69 CTrapCleanup* cleanup=CTrapCleanup::New();
75 test.Start(_L(" @SYMTestCaseID:SYSLIB-BAFL-UT-1706 Testing CPtrC8Array and TKeyDesC8Array class "));
77 TRAPD(err,DoTestsL());