sl@0: /* sl@0: * Copyright (c) 1998-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 the License "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: * T_TESTSPEC.CPP sl@0: * sl@0: */ sl@0: sl@0: sl@0: #include "tTestSpec.h" sl@0: #include "t_testaction.h" sl@0: sl@0: EXPORT_C CTestSpec* CTestSpec::NewL() sl@0: { sl@0: CTestSpec* self = new(ELeave) CTestSpec(); sl@0: return self; sl@0: } sl@0: sl@0: CTestSpec::CTestSpec() sl@0: { sl@0: } sl@0: sl@0: CTestSpec::~CTestSpec() sl@0: { sl@0: iTestActionArray.ResetAndDestroy(); sl@0: iTestActionArray.Close(); sl@0: } sl@0: sl@0: EXPORT_C TBool CTestSpec::GetNextTest(CTestAction*& aAction) sl@0: { sl@0: // Delete the previous test to free memory up for use by later tests sl@0: TInt prevTest = iTestNumber - 1; sl@0: if (prevTest >= 0 && prevTest < iTestActionArray.Count()) sl@0: { sl@0: delete iTestActionArray[prevTest]; sl@0: iTestActionArray[prevTest] = NULL; sl@0: } sl@0: sl@0: if (iTestNumber >= iTestActionArray.Count()) sl@0: { sl@0: return EFalse; sl@0: } sl@0: sl@0: aAction=iTestActionArray[iTestNumber]; sl@0: ++iTestNumber; sl@0: sl@0: return ETrue; sl@0: } sl@0: sl@0: EXPORT_C TInt CTestSpec::AddNextTest(CTestAction* aAction) sl@0: { sl@0: return iTestActionArray.Append(aAction); sl@0: } sl@0: sl@0: void CTestSpec::FreeAllTests() sl@0: { sl@0: iTestActionArray.ResetAndDestroy(); sl@0: }