First public contribution.
2 * Copyright (c) 2002-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 #ifndef __T_TESTSPEC_H__
21 #define __T_TESTSPEC_H__
24 #include "t_mtestspec.h"
27 * This class represents a series of a test that needs to be run. It should be passed
28 * to a CTestHandler object in order for the tests to be run.
30 class CTestSpec : public CBase, public MTestSpec
33 IMPORT_C static CTestSpec* NewL();
36 public: // from MTestSpec
37 IMPORT_C virtual TBool GetNextTest(CTestAction*& aAction);
41 * This function adds a test to the series of tests. The class takes ownership
43 * @param aAction The action to add. This pointer must not be 0.
44 * @return A standard error code.
46 IMPORT_C virtual TInt AddNextTest(CTestAction* aAction);
48 /// Free all tests, so that we can do a comparison of the heap count before
49 /// any tests were loaded and after they were all run.
58 * This array contains all the tests to be run. The tests are owned by this class and
59 * are destroyed by the destructor.
61 RPointerArray<CTestAction> iTestActionArray;