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 RStringPool
18 #ifndef __STRINGPOOLSTATEACCESSOR_H__
19 #define __STRINGPOOLSTATEACCESSOR_H__
26 #include <ecom/test_bed/testutilities.h>
27 #include <ecom/test_bed/testbeddefinitions.h>
28 #include <ecom/test_bed/stateaccessor.h>
29 #include <stringpool.h>
30 // ______________________________________________________________________________
34 Comments : State accessor for the RStringPool object under test.
36 class TStringPool_StateAccessor : public MStateAccessor
40 @fn InvariantTest(TAny* aTestObject)
43 @param TAny* A pointer to the object under test.
44 @return TInt KErrNone if the invariants were valid, error code otherwise.
45 @pre TStringPool_StateAccessor is fully constructed.
46 @post The class under test is set to the state specified.
48 inline TInt InvariantTest(TAny* aTestObject);
51 @fn Internalize(TAny* aTestObject)
52 Intended Usage : Implemented by the developer to set the state of the object under test.
54 @param aTestObject The object to be tested
55 @return KErrNone if the internalize was successful.
56 @return One of the EPOC standard error codes indicating the reason
57 for the failure to load the object state.
58 @pre TStringPool_StateAccessor is fully constructed, and
59 valid test object must be passed in.
60 @post The class under test is set to the state specified
62 inline virtual TInt Internalize(TAny* aTestObject);
65 @fn Externalize(TAny* aTestObject)
66 Intended Usage : Implemented by the developer to persist the state of the object under test.
68 @param aTestObject The object to be tested
69 @return KErrNone if the internalize was successful.
70 @return One of the EPOC standard error codes indicating the reason
71 for the failure to externalize the object.
72 @pre TStringPool_StateAccessor is fully constructed, and
73 valid test object must be passed in.
74 @post Returns an error code dependant on the result of the test
76 inline virtual TInt Externalize(TAny* aTestObject);
79 @fn InternalizeL(RFileReadStream& aStream, RStringPool* aStringPool)
80 Intended Usage : Implemented by the developer to set the state of the object under test.
81 Error Condition : Leaves with an error code.
83 @param aStream The filestream to read from .
84 @param aStringPool A pointer to the RStringPool object under test.
86 @pre TStringPool_StateAccessor is fully constructed.
87 @post The class under test is set to the state specified.
89 inline void InternalizeL(RFileReadStream& aStream, RStringPool* aStringPool);
92 @fn ExternalizeL(RFileWriteStream& aStream, RStringPool* aStringPool)
93 Intended Usage : Implemented by the developer to persist the state of the object under test.
94 Error Condition : Leaves with an error code.
96 @param aStream The filestream to persist into.
97 @param aStringPool A pointer to the RStringPool object under test.
99 @pre TStringPool_StateAccessor is fully constructed.
100 @post No change to the class under test, its internal state.
103 inline void ExternalizeL(RFileWriteStream& aStream, RStringPool* aStringPool);
107 @fn InternalizeL(RStringPool* aStringPool)
108 Intended Usage : Implemented by the developer to set the state of the object under test.
109 Error Condition : Leaves with an error code.
111 @param TAny* A pointer to the object under test.
113 @pre TStringPool_StateAccessor is fully constructed.
114 @post The class under test is set to the state specified.
116 inline void InternalizeL(RStringPool* aStringPool);
119 @fn ExternalizeL(RStringPool* aStringPool)
120 Intended Usage : Implemented by the developer to persist the state of the object under test.
121 Error Condition : Leaves with an error code.
123 @param TAny* A pointer to the object under test.
125 @pre TStringPool_StateAccessor is fully constructed.
126 @post No change to the class under test, its internal state.
129 inline void ExternalizeL(RStringPool* aStringPool);
130 }; // TStringPool_StateAccessor
132 #include "StringPoolStateAccessor.inl"
134 #endif // __STRINGPOOLSTATEACCESSOR_H__