Update contrib.
2 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
3 // All rights reserved.
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.
15 // This main DLL entry point for the TSU_ECM_API_TestSuite
22 // Test system includes
23 #include "TSU_ECM_API_TestSuite.h"
25 #include "ECamInfoTest.h"
27 #include "ecamreservetest.h"
31 * NewTestSuite is exported at ordinal 1
32 * this provides the interface to allow schedule test
33 * to create instances of this test suite
35 EXPORT_C CTestSuite_ECam_API* NewTestSuiteL()
37 CTestSuite_ECam_API* self = new(ELeave) CTestSuite_ECam_API;
38 CleanupStack::PushL(self);
40 CleanupStack::Pop(self);
47 CTestSuite_ECam_API::~CTestSuite_ECam_API()
52 * Get Test Suite version
54 TPtrC CTestSuite_ECam_API::GetVersion()
56 _LIT(KTxtVersion, "1.0");
61 * This function initialises the test suite
62 * this creates all the test steps and stores them inside CTestSuite_ECam_API
64 void CTestSuite_ECam_API::InitialiseL()
66 // store the name of this test suite
67 iSuiteName = _L("TSU_ECM_API");
69 User::LeaveIfError(ifsSession.Connect());
70 #ifdef SYMBIAN_MULTIMEDIA_THREEPLANEARCH
71 ifsSession.Delete(KMMCameraPluginName);
72 #endif //SYMBIAN_MULTIMEDIA_THREEPLANEARCH
74 ifsSession.Delete(KTestCameraPluginName);
77 AddTestStepL(RECamInfoTest::NewL(EFalse));
78 AddTestStepL(RECamInnerInfoTest::NewL(EFalse));
80 AddTestStepL(RECamTest::NewL(EFalse));
81 AddTestStepL(RECamInnerTest::NewL(EFalse));
83 //Reserve Subscription Test
84 AddTestStepL(RECamReserveTest::NewL(EFalse));