os/ossrv/lowlevellibsandfws/pluginfw/Framework/BackupNotifierTest/BackupNotifierStateAccessor.h
First public contribution.
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 CBackupNotifier
18 #ifndef __BACKUPNOTIFIERSTATEACCESSOR_H__
19 #define __BACKUPNOTIFIERSTATEACCESSOR_H__
26 #include "TestUtilities.h"
27 #include <test_bed/testbeddefinitions.h>
28 #include "StateAccessor.h"
29 #include "BackupNotifier.h"
31 // ______________________________________________________________________________
36 Comments : State accessor for the CBackupNotifier object under test.
38 class TBackupNotifier_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 TBackupNotifier_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 TBackupNotifier_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 TBackupNotifier_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, CBackupNotifier* aBackupNotifier)
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 aBackupNotifier A pointer to the CBackupNotifier object under test.
88 @pre TBackupNotifier_StateAccessor is fully constructed.
89 @post The class under test is set to the state specified.
91 inline void InternalizeL(RFileReadStream& aStream, CBackupNotifier* aBackupNotifier);
94 @fn ExternalizeL(RFileWriteStream& aStream, CBackupNotifier* aBackupNotifier)
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 aBackupNotifier A pointer to the CBackupNotifier object under test.
101 @pre TBackupNotifier_StateAccessor is fully constructed.
102 @post No change to the class under test, its internal state.
105 inline void ExternalizeL(RFileWriteStream& aStream, CBackupNotifier* aBackupNotifier);
109 @fn InternalizeL(CBackupNotifier* aBackupNotifier)
110 Intended Usage : Implemented by the developer to set the state of the object under test.
111 Error Condition : Leaves with an error code.
113 @param TAny* A pointer to the object under test.
115 @pre TBackupNotifier_StateAccessor is fully constructed.
116 @post The class under test is set to the state specified.
118 inline void InternalizeL(CBackupNotifier* aBackupNotifier);
121 @fn ExternalizeL(CBackupNotifier* aBackupNotifier)
122 Intended Usage : Implemented by the developer to persist the state of the object under test.
123 Error Condition : Leaves with an error code.
125 @param TAny* A pointer to the object under test.
127 @pre TBackupNotifier_StateAccessor is fully constructed.
128 @post No change to the class under test, its internal state.
131 inline void ExternalizeL(CBackupNotifier* aBackupNotifier);
132 }; // TBackupNotifier_StateAccessor
134 #include "BackupNotifierStateAccessor.inl"
136 #endif // __BACKUPNOTIFIERSTATEACCESSOR_H__