sl@0: // Copyright (c) 1997-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 "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: // This file contains the definition of the class MComponentTestObserver sl@0: // sl@0: // sl@0: sl@0: /** sl@0: @test sl@0: */ sl@0: sl@0: #ifndef __COMPONENTTESTOBSERVER_H__ sl@0: #define __COMPONENTTESTOBSERVER_H__ sl@0: sl@0: class CComponentTester; sl@0: sl@0: /** sl@0: @internalAll sl@0: Comments : Allows a 'callback' through the Complete() function to indicate that the sl@0: observed CComponentTester has completed its task sl@0: */ sl@0: sl@0: class MComponentTestObserver sl@0: { sl@0: public: sl@0: /** sl@0: @fn virtual void Complete(CComponentTester* aTester, TInt aStatus) = 0 sl@0: Intended Usage : Indicates that the CComponentTester has completed a unit test sl@0: @since 7.0 sl@0: @param aTester The observed component tester. sl@0: @param aUnitTestId The id of the unit test which has completed. sl@0: @pre The specified unit test should have been launched sl@0: @post If all unit tests are complete then the specified CComponentTester and sl@0: associated library are marked for deletion/unloading, or the next unit test is run. sl@0: */ sl@0: sl@0: virtual void Complete(CComponentTester* aTester, TInt aUnitTestId) = 0; sl@0: }; sl@0: sl@0: #endif