os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/ComponentTesterTest/ComponentTesterStateAccessor.h
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 // The definition of the accessor class upon the CComponentTester
18 #ifndef __COMPONENTTESTERSTATEACCESSOR_H__
19 #define __COMPONENTTESTERSTATEACCESSOR_H__
26 #include "TestUtilities.h"
27 #include <ecom/test_bed/testbeddefinitions.h>
28 #include "StateAccessor.h"
29 #include "ComponentTester.h"
32 class CComponentTesterTestDerivation : public CComponentTester
36 inline CComponentTesterTestDerivation(CDataLogger& aDataLogger, MComponentTestObserver& aObserver);
38 inline void ConstructL();
41 // ______________________________________________________________________________
46 Comments : State accessor for the CComponentTester object under test.
48 class TComponentTester_StateAccessor : public MStateAccessor
52 @fn InvariantTest(TAny* aTestObject)
53 Intended Usage : Checks the CComponentTester class for Invariant violation.
55 @param TAny* A pointer to the object under test.
56 @return TInt KErrNone if the invariants were valid, error code otherwise.
57 @pre TComponentTester_StateAccessor is fully constructed.
58 @post The class under test is set to the state specified.
60 inline TInt InvariantTest(TAny* aTestObject);
63 @fn Internalize(TAny* aTestObject)
64 Intended Usage : Implemented by the developer to set the state of the object under test.
66 @param aTestObject The object to be tested
67 @return KErrNone if the internalize was successful.
68 @return One of the EPOC standard error codes indicating the reason
69 for the failure to load the object state.
70 @pre TComponentTester_StateAccessor is fully constructed, and
71 valid test object must be passed in.
72 @post The class under test is set to the state specified
74 inline virtual TInt Internalize(TAny* aTestObject);
77 @fn Externalize(TAny* aTestObject)
78 Intended Usage : Implemented by the developer to persist the state of the object under test.
80 @param aTestObject The object to be tested
81 @return KErrNone if the internalize was successful.
82 @return One of the EPOC standard error codes indicating the reason
83 for the failure to externalize the object.
84 @pre TComponentTester_StateAccessor is fully constructed, and
85 valid test object must be passed in.
86 @post Returns an error code dependant on the result of the test
88 inline virtual TInt Externalize(TAny* aTestObject);
91 @fn InternalizeL(RFileReadStream& aStream, CComponentTester* aComponentTester)
92 Intended Usage : Implemented by the developer to set the state of the object under test.
93 Error Condition : Leaves with an error code.
95 @param aStream The filestream to read from .
96 @param aComponentTester A pointer to the CComponentTester object under test.
98 @pre TComponentTester_StateAccessor is fully constructed.
99 @post The class under test is set to the state specified.
101 inline void InternalizeL(RFileReadStream& aStream, CComponentTester* aComponentTester);
104 @fn ExternalizeL(RFileWriteStream& aStream, CComponentTester* aComponentTester)
105 Intended Usage : Implemented by the developer to persist the state of the object under test.
106 Error Condition : Leaves with an error code.
108 @param aStream The filestream to persist into.
109 @param aComponentTester A pointer to the CComponentTester object under test.
111 @pre TComponentTester_StateAccessor is fully constructed.
112 @post No change to the class under test, its internal state.
115 inline void ExternalizeL(RFileWriteStream& aStream, CComponentTester* aComponentTester);
117 inline CComponentTesterTestDerivation* CreateComponentTester(CComponentTester& aCompTest, CDataLogger& aDataLogger, MComponentTestObserver& aObserver);
119 inline void AddUnitTestL(CComponentTester& aCompTest, CUnitTest* aUnitTest);
121 inline void AddParamUnitTestL(CComponentTester& aCompTest, CUnitTest* aUnitTest);
123 inline void RunL(CComponentTester& aCompTest);
127 @fn InternalizeL(CComponentTester* aComponentTester)
128 Intended Usage : Implemented by the developer to set the state of the object under test.
129 Error Condition : Leaves with an error code.
131 @param TAny* A pointer to the object under test.
133 @pre TComponentTester_StateAccessor is fully constructed.
134 @post The class under test is set to the state specified.
136 inline void InternalizeL(CComponentTester* aComponentTester);
139 @fn ExternalizeL(CComponentTester* aComponentTester)
140 Intended Usage : Implemented by the developer to persist the state of the object under test.
141 Error Condition : Leaves with an error code.
143 @param TAny* A pointer to the object under test.
145 @pre TComponentTester_StateAccessor is fully constructed.
146 @post No change to the class under test, its internal state.
149 inline void ExternalizeL(CComponentTester* aComponentTester);
150 }; // TComponentTester_StateAccessor
152 #include "ComponentTesterStateAccessor.inl"
154 #endif // __COMPONENTTESTERSTATEACCESSOR_H__