Update contrib.
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // This file contains the definition of the class MComponentTestObserver
22 #ifndef __COMPONENTTESTOBSERVER_H__
23 #define __COMPONENTTESTOBSERVER_H__
25 class CComponentTester;
29 Comments : Allows a 'callback' through the Complete() function to indicate that the
30 observed CComponentTester has completed its task
33 class MComponentTestObserver
37 @fn virtual void Complete(CComponentTester* aTester, TInt aStatus) = 0
38 Intended Usage : Indicates that the CComponentTester has completed a unit test
40 @param aTester The observed component tester.
41 @param aUnitTestId The id of the unit test which has completed.
42 @pre The specified unit test should have been launched
43 @post If all unit tests are complete then the specified CComponentTester and
44 associated library are marked for deletion/unloading, or the next unit test is run.
47 virtual void Complete(CComponentTester* aTester, TInt aUnitTestId) = 0;