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_MmTsthStep11.h" sl@0: #include "TSU_MmTsthSuite11.h" sl@0: sl@0: // preamble sl@0: TVerdict RTSUMmTsthStep11::OpenL() sl@0: { sl@0: // initialise iStepStub for tests. if this fails, tests are sl@0: // inconclusive (will not run) sl@0: RTestStepVirtualStub* theStepStub = NULL; sl@0: TRAPD(err, theStepStub = RTestStepVirtualStub::NewL()); sl@0: if(err != KErrNone) sl@0: { sl@0: ERR_PRINTF1(_L("RTestStepVirtualStub::NewL() left")); sl@0: return iTestStepResult = EInconclusive; sl@0: } sl@0: sl@0: iStepStub = theStepStub; sl@0: // set its suite to the suite of this step - so that it can do logging sl@0: iStepStub->SetSuite(iSuite); sl@0: sl@0: return iTestStepResult = EPass; sl@0: } sl@0: sl@0: // postamble sl@0: void RTSUMmTsthStep11::Close() sl@0: { sl@0: delete iStepStub; sl@0: }