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 // This file contains the definition of the
15 // class CSuicideInterfaceUnitTest
19 #ifndef __SUICIDEUNITTEST_H__
20 #define __SUICIDEUNITTEST_H__
24 #include <test_bed/unittest.h>
25 #include "SuicideStateAccessors.h"
26 #include "SuicideTransitions.h"
27 #include "SuicideTransitionValidation.h"
29 // ______________________________________________________________________________
34 Comments : UnitTest CreateAndDestroy on the CExampleInterface test class.
36 class CSuicideInterfaceCreateAndDestroyUnitTest : public CUnitTest
40 @fn NewL(CDataLogger& aDataLogger,
41 MUnitTestObserver& aObserver)
42 Intended Usage : Standard two-phase construction which leaves nothing on the
44 Error Condition : Leaves with the error code.
47 @param aDataLogger The output logging object.
48 @param aObserver The observer of this UnitTest.
49 @param aStateAccessor WhiteBox state access to the CExampleInterface class.
50 @return CSuicideInterfaceCreateAndDestroyUnitTest* The constructed object.
52 @post CSuicideInterfaceCreateAndDestroyUnitTest is fully constructed, and initialised.
54 static CSuicideInterfaceCreateAndDestroyUnitTest* NewL(CDataLogger& aDataLogger,
55 MUnitTestObserver& aObserver);
58 @fn RunError(TInt aError)
59 Intended Usage : Intercept the panic caused by a RunL leave,
60 to restore the CSuicideInterfaceCreateAndDestroyUnitTest
61 object to a sensible state.
62 (called by the Active Scheduler immediately before the Panic).
63 Error Condition : @see CUnitTest::RunError().
65 @return TInt KErrNone if cleanup successful, otherwise
66 @see CUnitTest::RunError()
67 @pre CSuicideInterfaceCreateAndDestroyUnitTest is fully constructed, and initialised.
68 @post The object has been restored to a sensible state.
70 inline TInt RunError(TInt aError);
73 @fn ~CSuicideInterfaceCreateAndDestroyUnitTest()
74 Intended Usage : Standard Destructor.
75 Error Condition : None.
77 @pre CSuicideInterfaceCreateAndDestroyUnitTest is fully constructed.
78 @post CSuicideInterfaceCreateAndDestroyUnitTest is fully destroyed.
80 inline ~CSuicideInterfaceCreateAndDestroyUnitTest();
84 @fn CSuicideInterfaceCreateAndDestroyUnitTest(CDataLogger& aDataLogger,
85 MUnitTestObserver& aObserver)
86 Intended Usage : Default constructor.
87 Error Condition : None.
89 @param aDataLogger The output logging object.
90 @param aObserver The observer of this UnitTest.
91 @param aStateAccessor WhiteBox state access to the CExampleInterface class.
93 @post CSuicideInterfaceCreateAndDestroyUnitTest is fully constructed.
95 inline CSuicideInterfaceCreateAndDestroyUnitTest(CDataLogger& aDataLogger,
96 MUnitTestObserver& aObserver);
100 Intended Usage : Second phase of safe two phase construction,
101 to complete the object initialisation.
102 Error Condition : Leaves with an error code.
103 @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
106 @pre CSuicideInterfaceCreateAndDestroyUnitTest is fully constructed.
107 @post CSuicideInterfaceCreateAndDestroyUnitTest is fully initialised.
109 inline void ConstructL();
112 The context of the Unit Test.
113 i.e The CExampleInterface class tested by this UintTest's transitions.
115 CSuicideInterface_UnitTestContext* iUTContext;
116 TSuicideInterface_Ctor_TransitionValidator* iCtorValidator;
117 TSuicideInterface_Dtor_TransitionValidator* iDtorValidator;
118 TSuicideInterface_StateAccessor* iStateAccessor;
119 REComSession* iEComSession;
122 // ______________________________________________________________________________
127 Comments : UnitTest of the CExampleInterface test class.
129 class CSuicideInterfaceFireAndForgetUnitTest : public CUnitTest
133 @fn NewL(CDataLogger& aDataLogger,
134 MUnitTestObserver& aObserver)
135 Intended Usage : Standard two-phase construction which leaves nothing on the
137 Error Condition : Leaves with the error code.
140 @param aDataLogger The output logging object.
141 @param aObserver The observer of this UnitTest.
142 @param aStateAccessor The WhiteBox state access for the CExampleInterface class.
143 @return CSuicideInterfaceFireAndForgetUnitTest* The constructed object.
145 @post CSuicideInterfaceFireAndForgetUnitTest is fully constructed, and initialised.
147 static CSuicideInterfaceFireAndForgetUnitTest* NewL(CDataLogger& aDataLogger,
148 MUnitTestObserver& aObserver);
151 @fn RunError(TInt aError)
152 Intended Usage : Trap on the RunL leave, called by the Active Scheduler.
153 Error Condition : @see CUnitTest::RunError()
155 @return TInt KErrNone if cleanup successful, otherwise @see CUnitTest::RunError()
156 @pre CSuicideInterfaceFireAndForgetUnitTest is fully constructed, and initialised.
157 @post The object has been restored to a sensible state.
159 inline TInt RunError(TInt aError);
162 @fn ~CSuicideInterfaceFireAndForgetUnitTest()
163 Intended Usage : Standard Destructor
164 Error Condition : None.
166 @pre CSuicideInterfaceFireAndForgetUnitTest is fully constructed.
167 @post CSuicideInterfaceFireAndForgetUnitTest is fully destroyed.
169 inline ~CSuicideInterfaceFireAndForgetUnitTest();
173 @fn CSuicideInterfaceFireAndForgetUnitTest(CDataLogger& aDataLogger,
174 MUnitTestObserver& aObserver)
175 Intended Usage : Default constructor
176 Error Condition : None
178 @param aDataLogger The output logging object.
179 @param aObserver The observer of this UnitTest.
180 @param aStateAccessor The WhiteBox state access for the CExampleInterface class.
182 @post CSuicideInterfaceFireAndForgetUnitTest is fully constructed.
184 inline CSuicideInterfaceFireAndForgetUnitTest(CDataLogger& aDataLogger,
185 MUnitTestObserver& aObserver);
188 @fn void ConstructL()
189 Intended Usage : Second phase of safe two phase construction,
190 to complete the object initialisation.
191 Error Condition : Leaves with an error code.
192 @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
195 @pre CSuicideInterfaceFireAndForgetUnitTest is fully constructed.
196 @post CSuicideInterfaceFireAndForgetUnitTest is fully initialised.
198 inline void ConstructL();
200 /** The context of the Unit Test i.e a ClassName class */
201 CSuicideInterface_UnitTestContext* iUTContext;
202 TSuicideInterface_Ctor_TransitionValidator* iCtorValidator;
203 TSuicideInterface_FireAndForget_TransitionValidator* iFireAndForgetValidator;
204 TSuicideInterface_StateAccessor* iStateAccessor;
205 REComSession* iEComSession;
208 #endif // __SUICIDEUNITTEST_H__