os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/inc/UnitTestObserver.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 MUnitTestObserver
    15 // 
    16 //
    17 
    18 /**
    19  @test
    20 */
    21 
    22 #ifndef __UNITTESTOBSERVER_H__
    23 #define __UNITTESTOBSERVER_H__
    24 
    25 class CUnitTest;
    26 
    27 /**
    28 	@internalAll
    29 	Comments : Provides a callback method to the CComponentTester to 
    30 	indicate that the unit test has completed
    31  */
    32 
    33 class MUnitTestObserver
    34 	{
    35 public:
    36 /**
    37 	@fn				virtual Complete(CUnitTest* aUnitTest) = 0
    38 	Intended Usage	:	Allows a 'callback' to indicate that the observed class has
    39 					completed its task
    40 	Error Condition	: None	
    41 	@since			7.0
    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
    45  */
    46 	
    47 	virtual void Complete(CUnitTest* aUnitTest) = 0;
    48 	};
    49 
    50 #endif