os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/TransitionTest/TransitionStateAccessor.h
Update contrib.
1 // Copyright (c) 2001-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 CTransition
18 #ifndef __TRANSITIONSTATEACCESSOR_H__
19 #define __TRANSITIONSTATEACCESSOR_H__
26 #include "TestUtilities.h"
27 #include <ecom/test_bed/testbeddefinitions.h>
28 #include "StateAccessor.h"
29 #include <ecom/test_bed/transition.h>
31 // ______________________________________________________________________________
36 Comments : State accessor for the CTransition object under test.
38 class TTransition_StateAccessor : public MStateAccessor
42 @fn InvariantTest(TAny* aTestObject)
45 @param TAny* A pointer to the object under test.
46 @return TInt KErrNone if the invariants were valid, error code otherwise.
47 @pre TTransition_StateAccessor is fully constructed.
48 @post The class under test is set to the state specified.
50 inline TInt InvariantTest(TAny* aTestObject);
53 @fn Internalize(TAny* aTestObject)
54 Intended Usage : Implemented by the developer to set the state of the object under test.
56 @param aTestObject The object to be tested
57 @return KErrNone if the internalize was successful.
58 @return One of the EPOC standard error codes indicating the reason
59 for the failure to load the object state.
60 @pre TTransition_StateAccessor is fully constructed, and
61 valid test object must be passed in.
62 @post The class under test is set to the state specified
64 inline virtual TInt Internalize(TAny* aTestObject);
67 @fn Externalize(TAny* aTestObject)
68 Intended Usage : Implemented by the developer to persist the state of the object under test.
70 @param aTestObject The object to be tested
71 @return KErrNone if the internalize was successful.
72 @return One of the EPOC standard error codes indicating the reason
73 for the failure to externalize the object.
74 @pre TTransition_StateAccessor is fully constructed, and
75 valid test object must be passed in.
76 @post Returns an error code dependant on the result of the test
78 inline virtual TInt Externalize(TAny* aTestObject);
81 @fn IsRepeated(TAny* aTestObject) const
82 Intended Usage : Implemented by the developer to access the iRepeatThis
83 flag in the CTransition object under test.
85 @param aTestObject The CTransition object to be tested
86 @return ETrue if the flag is set.
87 @pre TTransition_StateAccessor is fully constructed, and
88 a valid test object must be passed in.
90 inline TBool IsRepeated(TAny* aTestObject) const;
93 @fn TransitionId(TAny* aTestObject) const
94 Intended Usage : Implemented by the developer to access the iTransitionId
95 descriptor in the CTransition object under test.
97 @param aTestObject The CTransition object to be tested
98 @return A pointer to the iTransitionId descriptor.
99 @pre TTransition_StateAccessor is fully constructed, and
100 a valid test object must be passed in.
102 inline const TDesC* TransitionId(TAny* aTestObject) const;
105 @fn TransitionInfo(TAny* aTestObject) const
106 Intended Usage : Implemented by the developer to access the iTransitionId
107 descriptor in the CTransition object under test.
109 @param aTestObject The CTransition object to be tested
110 @return A pointer to the iTransitionInfo structure.
111 @pre TTransition_StateAccessor is fully constructed, and
112 a valid test object must be passed in.
114 inline const TTransitionInfo* TransitionInfo(TAny* aTestObject) const;
117 @fn BlockingFlag(TAny* aTestObject) const
118 Intended Usage : Implemented by the developer to access the iBlockingTransition
119 flag in the CTransition object under test.
121 @param aTestObject The CTransition object to be tested
122 @return ETrue if the flag is set.
123 @pre TTransition_StateAccessor is fully constructed, and
124 a valid test object must be passed in.
126 inline TBool BlockingFlag(TAny* aTestObject) const;
129 @fn BlockingFlag(TAny* aTestObject) const
130 Intended Usage : Implemented by the developer to access the iLeaveError
131 flag in the CTransition object under test.
133 @param aTestObject The CTransition object to be tested
134 @return The current value of the error code.
135 @pre TTransition_StateAccessor is fully constructed, and
136 a valid test object must be passed in.
138 inline TInt ErrorCode(TAny* aTestObject) const;
141 @fn BlockingFlag(TAny* aTestObject) const
142 Intended Usage : Implemented by the developer to access the iStatus
143 structure in the CTransition object under test.
145 @param aTestObject The CTransition object to be tested
146 @return The contents of iStatus.
147 @pre TTransition_StateAccessor is fully constructed, and
148 a valid test object must be passed in.
150 inline TRequestStatus Status(const TAny* aTestObject) const;
153 @fn InternalizeL(RFileReadStream& aStream, CTransition* aTransition)
154 Intended Usage : Implemented by the developer to set the state of the object under test.
155 Error Condition : Leaves with an error code.
157 @param aStream The filestream to read from .
158 @param aTransition A pointer to the CTransition object under test.
160 @pre TTransition_StateAccessor is fully constructed.
161 @post The class under test is set to the state specified.
163 inline void InternalizeL(RFileReadStream& aStream, CTransition* aTransition);
166 @fn ExternalizeL(RFileWriteStream& aStream, CTransition* aTransition)
167 Intended Usage : Implemented by the developer to persist the state of the object under test.
168 Error Condition : Leaves with an error code.
170 @param aStream The filestream to persist into.
171 @param aTransition A pointer to the CTransition object under test.
173 @pre TTransition_StateAccessor is fully constructed.
174 @post No change to the class under test, its internal state.
177 inline void ExternalizeL(RFileWriteStream& aStream, CTransition* aTransition);
182 @fn InternalizeL(CTransition* aTransition)
183 Intended Usage : Implemented by the developer to set the state of the object under test.
184 Error Condition : Leaves with an error code.
186 @param TAny* A pointer to the object under test.
188 @pre TTransition_StateAccessor is fully constructed.
189 @post The class under test is set to the state specified.
191 inline void InternalizeL(CTransition* aTransition);
194 @fn ExternalizeL(CTransition* aTransition)
195 Intended Usage : Implemented by the developer to persist the state of the object under test.
196 Error Condition : Leaves with an error code.
198 @param TAny* A pointer to the object under test.
200 @pre TTransition_StateAccessor is fully constructed.
201 @post No change to the class under test, its internal state.
204 inline void ExternalizeL(CTransition* aTransition);
205 }; // TTransition_StateAccessor
207 #include "TransitionStateAccessor.inl"
209 #endif // __TRANSITIONSTATEACCESSOR_H__