os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/UnitTestTest/UnitTestStateAccessor.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 CUnitTest
18 #ifndef __UNITTESTSTATEACCESSOR_H__
19 #define __UNITTESTSTATEACCESSOR_H__
26 #include "TestUtilities.h"
27 #include <ecom/test_bed/testbeddefinitions.h>
28 #include "StateAccessor.h"
29 #include <ecom/test_bed/unittest.h>
32 class CUnitTestTestDerivation : public CUnitTest
35 inline CUnitTestTestDerivation(const TDesC& aName, CDataLogger& aDataLogger, MUnitTestObserver& aUnitTestObserver);
37 inline void ConstructL();
40 // ______________________________________________________________________________
45 Comments : State accessor for the CUnitTest object under test.
47 class TUnitTest_StateAccessor : public MStateAccessor
51 @fn InvariantTest(TAny* aTestObject)
52 Intended Usage : Checks for Incariant violation by the CUnitTest class.
54 @param TAny* A pointer to the object under test.
55 @return TInt KErrNone if the invariants were valid, error code otherwise.
56 @pre TUnitTest_StateAccessor is fully constructed.
57 @post The class under test is set to the state specified.
59 inline TInt InvariantTest(TAny* aTestObject);
62 @fn Internalize(TAny* aTestObject)
63 Intended Usage : Implemented by the developer to set the state of the object under test.
65 @param aTestObject The object to be tested
66 @return KErrNone if the internalize was successful.
67 @return One of the EPOC standard error codes indicating the reason
68 for the failure to load the object state.
69 @pre TUnitTest_StateAccessor is fully constructed, and
70 valid test object must be passed in.
71 @post The class under test is set to the state specified
73 inline virtual TInt Internalize(TAny* aTestObject);
76 @fn Externalize(TAny* aTestObject)
77 Intended Usage : Implemented by the developer to persist the state of the object under test.
79 @param aTestObject The object to be tested
80 @return KErrNone if the internalize was successful.
81 @return One of the EPOC standard error codes indicating the reason
82 for the failure to externalize the object.
83 @pre TUnitTest_StateAccessor is fully constructed, and
84 valid test object must be passed in.
85 @post Returns an error code dependant on the result of the test
87 inline virtual TInt Externalize(TAny* aTestObject);
90 @fn InternalizeL(RFileReadStream& aStream, CUnitTest* aUnitTest)
91 Intended Usage : Implemented by the developer to set the state of the object under test.
92 Error Condition : Leaves with an error code.
94 @param aStream The filestream to read from .
95 @param aUnitTest A pointer to the CUnitTest object under test.
97 @pre TUnitTest_StateAccessor is fully constructed.
98 @post The class under test is set to the state specified.
100 inline void InternalizeL(RFileReadStream& aStream, CUnitTest* aUnitTest);
103 @fn ExternalizeL(RFileWriteStream& aStream, CUnitTest* aUnitTest)
104 Intended Usage : Implemented by the developer to persist the state of the object under test.
105 Error Condition : Leaves with an error code.
107 @param aStream The filestream to persist into.
108 @param aUnitTest A pointer to the CUnitTest object under test.
110 @pre TUnitTest_StateAccessor is fully constructed.
111 @post No change to the class under test, its internal state.
114 inline void ExternalizeL(RFileWriteStream& aStream, CUnitTest* aUnitTest);
116 inline CUnitTestTestDerivation* CreateUnitTest(CUnitTest& aUnitTest, const TDesC& aName, CDataLogger& aDataLogger, MUnitTestObserver& aUnitTestObserver);
118 inline void RunL(CUnitTest& aUnitTest);
120 inline void AddTransitionL(CUnitTest& aUnitTest, CTransition* aTransition);
122 inline void AddBlockingTransitionL(CUnitTest& aUnitTest, CTransition* aTransition);
124 inline void AddLeaveErrorCodeL(CUnitTest& aUnitTest, TInt& aLeaveErrorCode);
128 @fn InternalizeL(CUnitTest* aUnitTest)
129 Intended Usage : Implemented by the developer to set the state of the object under test.
130 Error Condition : Leaves with an error code.
132 @param TAny* A pointer to the object under test.
134 @pre TUnitTest_StateAccessor is fully constructed.
135 @post The class under test is set to the state specified.
137 inline void InternalizeL(CUnitTest* aUnitTest);
140 @fn ExternalizeL(CUnitTest* aUnitTest)
141 Intended Usage : Implemented by the developer to persist the state of the object under test.
142 Error Condition : Leaves with an error code.
144 @param TAny* A pointer to the object under test.
146 @pre TUnitTest_StateAccessor is fully constructed.
147 @post No change to the class under test, its internal state.
150 inline void ExternalizeL(CUnitTest* aUnitTest);
151 }; // TUnitTest_StateAccessor
153 #include "UnitTestStateAccessor.inl"
155 #endif // __UNITTESTSTATEACCESSOR_H__