os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/TestControllerTest/TestControllerUnitTest.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 unit test class definitions for the CTestController class.
18 #ifndef __TESTCONTROLLERUNITTEST_H__
19 #define __TESTCONTROLLERUNITTEST_H__
21 #include <ecom/test_bed/testbeddefinitions.h>
22 #include "TestControllerStateAccessor.h"
23 #include "TestControllerTransitionValidation.h"
24 #include "TestControllerTransitions.h"
26 // ______________________________________________________________________________
31 Comments : Unit Test for CreateAndDestroy on CTestController, the class under test.
33 class CTestController_CreateAndDestroy_UnitTest : public CUnitTest
37 @fn NewL(CDataLogger& aDataLogger,
38 MUnitTestObserver& aObserver)
39 Intended Usage : Standard two-phase construction which leaves nothing on the
41 Error Condition : Leaves with the error code.
44 @param aDataLogger The output logging object.
45 @param aObserver The observer of this UnitTest.
46 @return CTestController_CreateAndDestroy_UnitTest* The constructed object.
48 @post CTestController_CreateAndDestroy_UnitTest is fully constructed, and initialised.
50 static CTestController_CreateAndDestroy_UnitTest* NewL(CDataLogger& aDataLogger,
51 MUnitTestObserver& aObserver);
54 @fn RunError(TInt aError)
55 Intended Usage : Intercept the panic caused by a RunL leave,
56 to restore the CTestController_CreateAndDestroy_UnitTest
57 object to a sensible state.
58 (called by the Active Scheduler immediately before the Panic).
59 Error Condition : @see CUnitTest::RunError().
61 @return TInt KErrNone if cleanup successful, otherwise
62 @see CUnitTest::RunError()
63 @pre CTestController_CreateAndDestroy_UnitTest is fully constructed, and initialised.
64 @post The object has been restored to a sensible state.
66 inline TInt RunError(TInt aError);
69 @fn ~CTestController_CreateAndDestroy_UnitTest()
70 Intended Usage : Standard Destructor.
71 Error Condition : None.
73 @pre CTestController_CreateAndDestroy_UnitTest is fully constructed.
74 @post CTestController_CreateAndDestroy_UnitTest is fully destroyed.
76 ~CTestController_CreateAndDestroy_UnitTest();
80 @fn CTestController_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
81 MUnitTestObserver& aObserver)
82 Intended Usage : Default constructor.
83 Error Condition : None.
85 @param aDataLogger The output logging object.
86 @param aObserver The observer of this UnitTest.
87 @param aStateAccessor WhiteBox state access to the CTestController class.
89 @post CTestController_CreateAndDestroy_UnitTest is fully constructed.
91 inline CTestController_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
92 MUnitTestObserver& aObserver);
96 Intended Usage : Second phase of safe two phase construction,
97 to complete the object initialisation.
98 Error Condition : Leaves with an error code.
99 @leave KErrNoMemory, and @see CUnitTest::BaseNewL().
102 @pre CTestController_CreateAndDestroy_UnitTest is fully constructed.
103 @post CTestController_CreateAndDestroy_UnitTest is fully initialised.
108 The context of the Unit Test.
109 i.e The CTestController class tested by this UnitTest's transitions.
111 CTestController_UnitTestContext* iUTContext;
112 TTestController_StateAccessor* iStateAccessor;
113 // C'tor, d'tor, and method transition validators
114 TTestController_Ctor_TransitionValidator* iCtorValidator;
115 TTestController_Dtor_TransitionValidator* iDtorValidator;
117 }; // CTestController_CreateAndDestroy_UnitTest
119 // ______________________________________________________________________________
124 Comments : Unit Test for FindTests on CTestController, the class under test.
126 class CTestController_FindTests_UnitTest : public CUnitTest
130 @fn NewL(CDataLogger& aDataLogger,
131 MUnitTestObserver& aObserver)
132 Intended Usage : Standard two-phase construction which leaves nothing on the
134 Error Condition : Leaves with the error code.
137 @param aDataLogger The output logging object.
138 @param aObserver The observer of this UnitTest.
139 @return CTestController_FindTests_UnitTest* The constructed object.
141 @post CTestController_FindTests_UnitTest is fully constructed, and initialised.
143 static CTestController_FindTests_UnitTest* NewL(CDataLogger& aDataLogger,
144 MUnitTestObserver& aObserver);
147 @fn RunError(TInt aError)
148 Intended Usage : Intercept the panic caused by a RunL leave,
149 to restore the CTestController_FindTests_UnitTest
150 object to a sensible state.
151 (called by the Active Scheduler immediately before the Panic).
152 Error Condition : @see CUnitTest::RunError().
154 @return TInt KErrNone if cleanup successful, otherwise
155 @see CUnitTest::RunError()
156 @pre CTestController_FindTests_UnitTest is fully constructed, and initialised.
157 @post The object has been restored to a sensible state.
159 inline TInt RunError(TInt aError);
162 @fn ~CTestController_FindTests_UnitTest()
163 Intended Usage : Standard Destructor.
164 Error Condition : None.
166 @pre CTestController_FindTests_UnitTest is fully constructed.
167 @post CTestController_FindTests_UnitTest is fully destroyed.
169 ~CTestController_FindTests_UnitTest();
173 @fn CTestController_FindTests_UnitTest(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 WhiteBox state access to the CTestController class.
182 @post CTestController_FindTests_UnitTest is fully constructed.
184 inline CTestController_FindTests_UnitTest(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 CTestController_FindTests_UnitTest is fully constructed.
196 @post CTestController_FindTests_UnitTest is fully initialised.
201 The context of the Unit Test.
202 i.e The CTestController class tested by this UnitTest's transitions.
204 CTestController_UnitTestContext* iUTContext;
205 TTestController_StateAccessor* iStateAccessor;
206 // C'tor, d'tor, and method transition validators
207 TTestController_Ctor_TransitionValidator* iCtorValidator;
208 TTestController_FindComponents_TransitionValidator* iFindComponentsValidator;
209 TTestController_Start_TransitionValidator* iStartValidator;
210 TTestController_Dtor_TransitionValidator* iDtorValidator;
212 }; // CTestController_FindTests_UnitTest
214 // ______________________________________________________________________________
217 class CTestController_CreateAndDestroy_UnitTest_STUB : public CUnitTest
220 static CTestController_CreateAndDestroy_UnitTest_STUB* NewL(CDataLogger& aDataLogger,
221 MUnitTestObserver& aObserver);
223 inline TInt RunError(TInt aError);
225 ~CTestController_CreateAndDestroy_UnitTest_STUB();
228 inline CTestController_CreateAndDestroy_UnitTest_STUB(CDataLogger& aDataLogger,
229 MUnitTestObserver& aObserver);
233 /* No data since class acts as a do nothing stub*/
236 #endif // __TESTCONTROLLERUNITTEST_H__