Update contrib.
1 // Copyright (c) 2004-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.
17 #include <ecom/ecom.h>
18 #include "T_PlatSecInterface.h"
20 LOCAL_D RTest Test(_L("T_PlatSecTest"));
23 @SYMTestCaseID SYSLIB-ECOM-CT-0784
24 @SYMTestCaseDesc Tests for list Implementations created with two different UID
26 @SYMTestActions Create new implementations with two different UID.
27 Execute REComSession::FinalClose
28 @SYMTestExpectedResults Test must not fail
31 static void DoTestsL()
33 Test.Next(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0784 CPlatSecInterface1 "));
34 //Load the first plugin interface. It should be OK - no PlatSec warnings reported.
35 CPlatSecInterface1* p1 = NULL;
36 TRAPD(err, p1 = CPlatSecInterface1::NewL());
39 TUid implUid = p1->ImplId();
40 Test(implUid == KUidPlatSecECom1Impl);
44 Test.Next(_L("CPlatSecInterface2"));
45 //Load the second plugin interface. PlatSec warnings will be printed out.
46 CPlatSecInterface2* p2 = NULL;
47 TRAP(err, p2 = CPlatSecInterface2::NewL());
50 TUid implUid = p2->ImplId();
51 Test(implUid == KUidPlatSecECom2Impl);
55 REComSession::FinalClose();
58 GLDEF_C TInt E32Main()
63 Test.Start(_L("ListImplementationsL tests."));
65 CTrapCleanup* cleanup = CTrapCleanup::New();
67 //install the scheduler
68 CActiveScheduler* scheduler = new(ELeave)CActiveScheduler;
69 CActiveScheduler::Install(scheduler);
71 TRAPD(err, ::DoTestsL());