Update contrib.
2 * Copyright (c) 1998-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
20 #include "tTestSpec.h"
21 #include "t_testaction.h"
23 EXPORT_C CTestSpec* CTestSpec::NewL()
25 CTestSpec* self = new(ELeave) CTestSpec();
29 CTestSpec::CTestSpec()
33 CTestSpec::~CTestSpec()
35 iTestActionArray.ResetAndDestroy();
36 iTestActionArray.Close();
39 EXPORT_C TBool CTestSpec::GetNextTest(CTestAction*& aAction)
41 // Delete the previous test to free memory up for use by later tests
42 TInt prevTest = iTestNumber - 1;
43 if (prevTest >= 0 && prevTest < iTestActionArray.Count())
45 delete iTestActionArray[prevTest];
46 iTestActionArray[prevTest] = NULL;
49 if (iTestNumber >= iTestActionArray.Count())
54 aAction=iTestActionArray[iTestNumber];
60 EXPORT_C TInt CTestSpec::AddNextTest(CTestAction* aAction)
62 return iTestActionArray.Append(aAction);
65 void CTestSpec::FreeAllTests()
67 iTestActionArray.ResetAndDestroy();