Update contrib.
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 __MTESTSPEC_H__
21 #define __MTESTSPEC_H__
26 * This class defines the interface that must be provided by the objects passed
27 * to a CTestHandler. It allows the CTestHandler object to get the next test it has to
34 * This function returns the next test to be run.
35 * @param aAction This is a reference to a pointer which will be initialized
36 * by the function so that it points to the next test to run. The action is owned
37 * by the MTestSpec and must not be deleted by the CTestHandler object.
38 * @return ETrue if there is another test to run. In this case aAction points to the
40 * @return EFalse if there is no more test to run. In this case aAction is meaningless.
42 virtual TBool GetNextTest(CTestAction*& aAction) = 0;