sl@0: /* 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 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.H sl@0: * sl@0: */ sl@0: sl@0: sl@0: #ifndef __T_TESTSPEC_H__ sl@0: #define __T_TESTSPEC_H__ sl@0: sl@0: #include sl@0: #include "t_mtestspec.h" sl@0: sl@0: /** sl@0: * This class represents a series of a test that needs to be run. It should be passed sl@0: * to a CTestHandler object in order for the tests to be run. sl@0: */ sl@0: class CTestSpec : public CBase, public MTestSpec sl@0: { sl@0: public: sl@0: IMPORT_C static CTestSpec* NewL(); sl@0: virtual ~CTestSpec(); sl@0: sl@0: public: // from MTestSpec sl@0: IMPORT_C virtual TBool GetNextTest(CTestAction*& aAction); sl@0: sl@0: public: sl@0: /** sl@0: * This function adds a test to the series of tests. The class takes ownership sl@0: * of the argument. sl@0: * @param aAction The action to add. This pointer must not be 0. sl@0: * @return A standard error code. sl@0: */ sl@0: IMPORT_C virtual TInt AddNextTest(CTestAction* aAction); sl@0: sl@0: /// Free all tests, so that we can do a comparison of the heap count before sl@0: /// any tests were loaded and after they were all run. sl@0: void FreeAllTests(); sl@0: sl@0: private: sl@0: CTestSpec(); sl@0: //void ConstructL(); sl@0: sl@0: private: sl@0: /** sl@0: * This array contains all the tests to be run. The tests are owned by this class and sl@0: * are destroyed by the destructor. sl@0: */ sl@0: RPointerArray iTestActionArray; sl@0: TInt iTestNumber; sl@0: }; sl@0: sl@0: #endif sl@0: