os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/inc/StateAccessor.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 MStateAccessor
    15 // 
    16 //
    17 
    18 /**
    19  @test
    20 */
    21 
    22 #ifndef __STATEACCESSOR_H__
    23 #define __STATEACCESSOR_H__
    24 
    25 #include <e32base.h>
    26 
    27 /**
    28 	@internalAll	
    29 	Comments : Mixin which is used to define a class used for state checking of 
    30 	a test object.
    31  */
    32 
    33 class MStateAccessor
    34 	{
    35 public:
    36 /**
    37 	@fn				InvariantTest(TAny* aTestObject) = 0
    38 	Intended Usage	:	Override this in the derived class to implement 
    39 						invariant testing
    40 	@since			7.0
    41 	@param			aTestObject The object to be tested
    42 	@return			One of the EPOC standard error codes indicating the result of the test
    43 	@pre 			A valid test object must be passed in
    44 	@post			Returns an error code dependant on the result of the test
    45  */
    46 	
    47 	virtual TInt InvariantTest(TAny* aTestObject) = 0;
    48 /**
    49 	@fn				Internalize(TAny* aTestObject) = 0
    50 	Intended Usage	:	Override this in the derived class to implement 
    51 						object state loading.
    52 	@since			7.0
    53 	@param			aTestObject The object to be tested
    54 	@return			One of the EPOC standard error codes indicating the outcome of the attempt
    55 	to load the object state.
    56 	@pre 			A valid test object must be passed in
    57 	@post			Returns an error code dependant on the result of the test
    58  */
    59 	
    60 	virtual TInt Internalize(TAny* aTestObject) = 0;
    61 /**
    62 	@fn				Externalize(TAny* aTestObject) = 0
    63 	Intended Usage	:	Override this in the derived class to implement 
    64 						object state persistence.
    65 	@since			7.0
    66 	@param			aTestObject The object to be tested
    67 	@return			One of the EPOC standard error codes indicating the outcome of attempt
    68 	to externalize the object.
    69 	@pre 			A valid test object must be passed in
    70 	@post			Returns an error code dependant on the result of the test
    71  */
    72 	
    73 	virtual TInt Externalize(TAny* aTestObject) = 0;
    74 	};
    75 
    76 #endif