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 "script.h" sl@0: #include "parseline.h" sl@0: sl@0: #include "TSU_MmTsthStep02.h" sl@0: #include "TSU_MmTsthSuite02.h" sl@0: sl@0: // preamble sl@0: TVerdict RTSUMmTsthStep02::OpenL() sl@0: { sl@0: // initialise iScript and associated objects for tests. if this fails, tests are sl@0: // inconclusive (will not run) sl@0: iLogClient = iSuite->LogSystem(); sl@0: TRAPD(err, iTestUtils = CTestUtils::NewL(iLogClient)); sl@0: if(err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Could not initialise CTestUtils, error code %d"), err); sl@0: return iTestStepResult = EInconclusive; sl@0: } sl@0: sl@0: // NB : CScript has a NewL() for completion only : it is through NewLC that the Test sl@0: // Framework initialises its CScripts sl@0: TInt64 defTime(-1); sl@0: TRAPD(err2, iTestScript = CScript::NewLC(iTestUtils, iLogClient, defTime, KNullDesC); sl@0: CleanupStack::Pop(iTestScript) ); sl@0: if(err2 != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("Could not initialise CScript, error code %d"), err2); sl@0: return iTestStepResult = EInconclusive; sl@0: } sl@0: sl@0: return iTestStepResult = EPass; sl@0: } sl@0: sl@0: // postamble sl@0: void RTSUMmTsthStep02::Close() sl@0: { sl@0: delete iTestScript; sl@0: delete iTestUtils; sl@0: }