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_MmTsthStep03.h" sl@0: #include "TSU_MmTsthSuite03.h" sl@0: sl@0: // preamble sl@0: TVerdict RTSUMmTsthStep03::OpenL() sl@0: { sl@0: // create a CFileName with NewL, for use of tests - if this fails, sl@0: // the tests are inconclusive (cannot be run) sl@0: CFileName* theFileName = NULL; sl@0: TRAPD(err, theFileName = CFileName::NewL()); sl@0: if(err != KErrNone) sl@0: { sl@0: ERR_PRINTF2(_L("CFileName::NewL left with code %d"), err); sl@0: return iTestStepResult = EInconclusive; sl@0: } sl@0: iFileName = theFileName; sl@0: return iTestStepResult = EPass; sl@0: } sl@0: sl@0: // postamble sl@0: void RTSUMmTsthStep03::Close() sl@0: { sl@0: delete iFileName; sl@0: } sl@0: