sl@0: // Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: // EPOC includes sl@0: #include sl@0: sl@0: // Test system includes sl@0: #include sl@0: #include "TSU_MmTsthStep12.h" sl@0: #include "TSU_MmTsthSuite12.h" sl@0: sl@0: // preamble sl@0: TVerdict RTSUMmTsthStep12::OpenL() sl@0: { sl@0: // initialise iSuiteStub for tests. if this fails, tests are sl@0: // inconclusive (will not run) sl@0: CTestSuiteVirtualStub* theSuiteStub = new (ELeave) CTestSuiteVirtualStub; sl@0: CleanupStack::PushL(theSuiteStub); sl@0: TRAPD(err, theSuiteStub->ConstructL()); sl@0: if(err != KErrNone) sl@0: { sl@0: ERR_PRINTF1(_L("CTestSuiteVirtualStub::ConstructL() left")); sl@0: CleanupStack::PopAndDestroy(theSuiteStub); sl@0: return iTestStepResult = EInconclusive; sl@0: } sl@0: sl@0: iSuiteStub = theSuiteStub; sl@0: sl@0: // NB ensure the suite can log - set its logger to ours sl@0: iSuiteStub->SetLogSystem(iSuite->LogSystem()); sl@0: sl@0: CleanupStack::Pop(theSuiteStub); sl@0: return iTestStepResult = EPass; sl@0: } sl@0: sl@0: // postamble sl@0: void RTSUMmTsthStep12::Close() sl@0: { sl@0: delete iSuiteStub; sl@0: }