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 MUnitTestObserver
22 #ifndef __UNITTESTOBSERVER_H__
23 #define __UNITTESTOBSERVER_H__
29 Comments : Provides a callback method to the CComponentTester to
30 indicate that the unit test has completed
33 class MUnitTestObserver
37 @fn virtual Complete(CUnitTest* aUnitTest) = 0
38 Intended Usage : Allows a 'callback' to indicate that the observed class has
40 Error Condition : None
42 @param aUnitTest The unit test which has completed
43 @pre Should be called to indicate that all transitions in the unit test have completed
44 @post The unit test should have completed all operation as it could now be unloaded
47 virtual void Complete(CUnitTest* aUnitTest) = 0;