os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/inc/ComponentTestObserver.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // This file contains the definition of the class MComponentTestObserver
    15 // 
    16 //
    17 
    18 /**
    19  @test
    20 */
    21 
    22 #ifndef __COMPONENTTESTOBSERVER_H__
    23 #define __COMPONENTTESTOBSERVER_H__
    24 
    25 class CComponentTester;
    26 
    27 /**
    28 	@internalAll
    29 	Comments : Allows a 'callback' through the Complete() function to indicate that the 
    30 	observed CComponentTester has completed its task
    31  */
    32 
    33 class MComponentTestObserver
    34 	{
    35 public:
    36 /**
    37 	@fn				virtual void Complete(CComponentTester* aTester, TInt aStatus) = 0
    38 	Intended Usage	:	Indicates that the CComponentTester has completed a unit test
    39 	@since			7.0
    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.
    45  */
    46 	
    47 	virtual void Complete(CComponentTester* aTester, TInt aUnitTestId) = 0;
    48 	};
    49 
    50 #endif