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: * M_testspec.H sl@0: * sl@0: */ sl@0: sl@0: sl@0: #ifndef __MTESTSPEC_H__ sl@0: #define __MTESTSPEC_H__ sl@0: sl@0: class CTestAction; sl@0: sl@0: /** sl@0: * This class defines the interface that must be provided by the objects passed sl@0: * to a CTestHandler. It allows the CTestHandler object to get the next test it has to sl@0: * run. sl@0: */ sl@0: class MTestSpec sl@0: { sl@0: public: sl@0: /** sl@0: * This function returns the next test to be run. sl@0: * @param aAction This is a reference to a pointer which will be initialized sl@0: * by the function so that it points to the next test to run. The action is owned sl@0: * by the MTestSpec and must not be deleted by the CTestHandler object. sl@0: * @return ETrue if there is another test to run. In this case aAction points to the sl@0: * test to run. sl@0: * @return EFalse if there is no more test to run. In this case aAction is meaningless. sl@0: */ sl@0: virtual TBool GetNextTest(CTestAction*& aAction) = 0; sl@0: }; sl@0: sl@0: #endif