os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/TestManagerTest/TestManagerStateAccessor.h
First public contribution.
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 CTestManager
18 #ifndef __TESTMANAGERSTATEACCESSOR_H__
19 #define __TESTMANAGERSTATEACCESSOR_H__
26 #include "TestUtilities.h"
27 #include <ecom/test_bed/testbeddefinitions.h>
28 #include "StateAccessor.h"
29 #include "TestManager.h"
31 // ______________________________________________________________________________
36 Comments : State accessor for the CTestManager object under test.
38 class TTestManager_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 TTestManager_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 TTestManager_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 TTestManager_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 InternalizeL(RFileReadStream& aStream, CTestManager* aTestManager)
82 Intended Usage : Implemented by the developer to set the state of the object under test.
83 Error Condition : Leaves with an error code.
85 @param aStream The filestream to read from .
86 @param aTestManager A pointer to the CTestManager object under test.
88 @pre TTestManager_StateAccessor is fully constructed.
89 @post The class under test is set to the state specified.
91 inline void InternalizeL(RFileReadStream& aStream, CTestManager* aTestManager);
94 @fn ExternalizeL(RFileWriteStream& aStream, CTestManager* aTestManager)
95 Intended Usage : Implemented by the developer to persist the state of the object under test.
96 Error Condition : Leaves with an error code.
98 @param aStream The filestream to persist into.
99 @param aTestManager A pointer to the CTestManager object under test.
101 @pre TTestManager_StateAccessor is fully constructed.
102 @post No change to the class under test, its internal state.
105 inline void ExternalizeL(RFileWriteStream& aStream, CTestManager* aTestManager);
106 void RunL(CTestManager& aTestMan);
107 void TestComponentL(CTestManager& aTestMan, TInt& aComponentIndex);
108 void ActivateManager(CTestManager& aTestMan);
112 @fn InternalizeL(CTestManager* aTestManager)
113 Intended Usage : Implemented by the developer to set the state of the object under test.
114 Error Condition : Leaves with an error code.
116 @param TAny* A pointer to the object under test.
118 @pre TTestManager_StateAccessor is fully constructed.
119 @post The class under test is set to the state specified.
121 inline void InternalizeL(CTestManager* aTestManager);
124 @fn ExternalizeL(CTestManager* aTestManager)
125 Intended Usage : Implemented by the developer to persist the state of the object under test.
126 Error Condition : Leaves with an error code.
128 @param TAny* A pointer to the object under test.
130 @pre TTestManager_StateAccessor is fully constructed.
131 @post No change to the class under test, its internal state.
134 inline void ExternalizeL(CTestManager* aTestManager);
135 }; // TTestManager_StateAccessor
137 #include "TestManagerStateAccessor.inl"
139 #endif // __TESTMANAGERSTATEACCESSOR_H__