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 definitions of the transition classes upon the CUnitTest class methods.
18 #ifndef __UNITTESTTRANSITIONS_H__
19 #define __UNITTESTTRANSITIONS_H__
21 #include "TestUtilities.h"
22 #include "StateAccessor.h"
23 #include "LeakTestTransition.h"
24 #include <ecom/test_bed/datalogger.h>
25 #include <ecom/test_bed/unittest.h>
26 #include "UnitTestStateAccessor.h"
27 #include <ecom/test_bed/unittest.h>
29 #define CTransitionType CLeakTestTransition
31 // ______________________________________________________________________________
36 Comments : Provide all the CUnitTest specific
37 parameters and behaviour on the CUnitTest
38 test class for a transition.
40 class CUnitTest_UnitTestContext : public CUnitTestContext
44 @fn CUnitTest_UnitTestContext(CDataLogger& aDataLogger,
45 MStateAccessor& aStateAccessor,
46 MTransitionObserver& aObserver)
47 Intended Usage : Default constructor.
48 Error Condition : None.
50 @param aDataLogger The output logging object.
51 @param aObserver The observer of this UnitTest's Transitions.
52 @param aStateAccessor WhiteBox state access to the CUnitTest class under test.
54 @post CUnitTest_UnitTestContext is fully constructed, and initialised.
56 inline CUnitTest_UnitTestContext(CDataLogger& aDataLogger,
57 MStateAccessor& aStateAccessor,
58 MTransitionObserver& aObserver);
61 @fn ~CUnitTest_UnitTestContext()
62 Intended Usage : Default Destructor
64 @pre CUnitTest_UnitTestContext is fully constructed.
65 @post CUnitTest_UnitTestContext is fully destroyed
67 virtual inline ~CUnitTest_UnitTestContext();
71 // CUnitTestTestDerivation* iUnitTestDerived;
73 CDataLogger* iDataLogger;
74 MUnitTestObserver* iUnitTestObserver;
75 TTimeIntervalMicroSeconds32 iTimeAfter;
76 CTransition* iTransition;
78 CUnitTestTestDerivation* iUnitTestUnderTest;
79 CTransition* iCurrentTransition;
82 }; // CUnitTest_UnitTestContext
84 // ______________________________________________________________________________
89 Comments : Transition test of the CUnitTest::NewL method.
91 class CUnitTest_NewL_Transition : public CTransitionType
95 @fn CUnitTest_NewL_Transition(CUnitTestContext& aUTContext,
96 TTransitionValidator& aValidator)
97 Intended Usage : Standard c'tor method.
98 Error Condition : None.
100 @param aUTContext The context this transition is operating in.
101 @param aValidator Used for checking the pre & post conditions of the test object.
103 @post CUnitTest_NewL_Transition is fully constructed.
105 CUnitTest_NewL_Transition(CUnitTestContext& aUTContext,
106 TTransitionValidator& aValidator);
109 Intended Usage : To execute the CUnitTest::NewL method for the test harness.
110 Error Condition : Leaves with an error code.
111 @leave KErrNoMemory, (@see CUnitTest::NewL)
114 @pre CUnitTest_NewL_Transition is fully constructed.
115 @post No change in the CUnitTest_NewL_Transition apart
116 from iUnitTest, which may have changed state.
117 (@see CUnitTest::NewL post-condition) for iUnitTest's new state.
119 inline void TransitMethodL();
123 Intended Usage : To provide access to the unit test context cast to the correct type.
124 Error Condition : None.
126 @return The unit test context cast to a CUnitTest_UnitTestContext
127 @pre iUTContext is a valid CUnitTest_UnitTestContext.
128 @post No change in the CUnitTest_NewL_Transition
130 inline CUnitTest_UnitTestContext& Context() const;
131 }; // CUnitTest_NewL_Transition
133 // ______________________________________________________________________________
138 Comments : Transition test of the CUnitTest::Dtor method.
140 class CUnitTest_Dtor_Transition : public CTransition
144 @fn CUnitTest_Dtor_Transition(CUnitTestContext& aUTContext,
145 TTransitionValidator& aValidator)
146 Intended Usage : Standard c'tor method.
147 Error Condition : None.
149 @param aUTContext The context this transition is operating in.
150 @param aValidator Used for checking the pre & post conditions of the test object.
152 @post CUnitTest_Dtor_Transition is fully constructed.
154 CUnitTest_Dtor_Transition(CUnitTestContext& aUTContext,
155 TTransitionValidator& aValidator);
158 Intended Usage : To execute the CUnitTest::Dtor method for the test harness.
159 Error Condition : Leaves with an error code.
160 @leave KErrNoMemory, (@see CUnitTest::Dtor)
163 @pre CUnitTest_Dtor_Transition is fully constructed.
164 @post No change in the CUnitTest_Dtor_Transition apart
165 from iUnitTest, which may have changed state.
166 (@see CUnitTest::Dtor post-condition) for iUnitTest's new state.
168 inline void TransitMethodL();
172 Intended Usage : To provide access to the unit test context cast to the correct type.
173 Error Condition : None.
175 @return The unit test context cast to a CUnitTest_UnitTestContext
176 @pre iUTContext is a valid CUnitTest_UnitTestContext.
177 @post No change in the CUnitTest_Dtor_Transition
179 inline CUnitTest_UnitTestContext& Context() const;
180 }; // CUnitTest_Dtor_Transition
182 // ______________________________________________________________________________
187 Comments : Transition test of the CUnitTest::TransitionSetL method.
189 class CUnitTest_TransitionSetL_Transition : public CTransitionType
193 @fn CUnitTest_TransitionSetL_Transition(CUnitTestContext& aUTContext,
194 TTransitionValidator& aValidator)
195 Intended Usage : Standard c'tor method.
196 Error Condition : None.
198 @param aUTContext The context this transition is operating in.
199 @param aValidator Used for checking the pre & post conditions of the test object.
201 @post CUnitTest_TransitionSetL_Transition is fully constructed.
203 CUnitTest_TransitionSetL_Transition(CUnitTestContext& aUTContext,
204 TTransitionValidator& aValidator);
207 Intended Usage : To execute the CUnitTest::TransitionSetL method for the test harness.
208 Error Condition : Leaves with an error code.
209 @leave KErrNoMemory, (@see CUnitTest::TransitionSetL)
212 @pre CUnitTest_TransitionSetL_Transition is fully constructed.
213 @post No change in the CUnitTest_TransitionSetL_Transition apart
214 from iUnitTest, which may have changed state.
215 (@see CUnitTest::TransitionSetL post-condition) for iUnitTest's new state.
217 inline void TransitMethodL();
221 Intended Usage : To provide access to the unit test context cast to the correct type.
222 Error Condition : None.
224 @return The unit test context cast to a CUnitTest_UnitTestContext
225 @pre iUTContext is a valid CUnitTest_UnitTestContext.
226 @post No change in the CUnitTest_TransitionSetL_Transition
228 inline CUnitTest_UnitTestContext& Context() const;
229 }; // CUnitTest_TransitionSetL_Transition
231 // ______________________________________________________________________________
236 Comments : Transition test of the CUnitTest::GetCurrentTransition method.
238 class CUnitTest_GetCurrentTransition_Transition : public CTransition
242 @fn CUnitTest_GetCurrentTransition_Transition(CUnitTestContext& aUTContext,
243 TTransitionValidator& aValidator)
244 Intended Usage : Standard c'tor method.
245 Error Condition : None.
247 @param aUTContext The context this transition is operating in.
248 @param aValidator Used for checking the pre & post conditions of the test object.
250 @post CUnitTest_GetCurrentTransition_Transition is fully constructed.
252 CUnitTest_GetCurrentTransition_Transition(CUnitTestContext& aUTContext,
253 TTransitionValidator& aValidator);
256 Intended Usage : To execute the CUnitTest::GetCurrentTransition method for the test harness.
257 Error Condition : Leaves with an error code.
258 @leave KErrNoMemory, (@see CUnitTest::GetCurrentTransition)
261 @pre CUnitTest_GetCurrentTransition_Transition is fully constructed.
262 @post No change in the CUnitTest_GetCurrentTransition_Transition apart
263 from iUnitTest, which may have changed state.
264 (@see CUnitTest::GetCurrentTransition post-condition) for iUnitTest's new state.
266 inline void TransitMethodL();
270 Intended Usage : To provide access to the unit test context cast to the correct type.
271 Error Condition : None.
273 @return The unit test context cast to a CUnitTest_UnitTestContext
274 @pre iUTContext is a valid CUnitTest_UnitTestContext.
275 @post No change in the CUnitTest_GetCurrentTransition_Transition
277 inline CUnitTest_UnitTestContext& Context() const;
278 }; // CUnitTest_GetCurrentTransition_Transition
280 // ______________________________________________________________________________
285 Comments : Transition test of the CUnitTest::SetCurrentTransition method.
287 class CUnitTest_SetCurrentTransition_Transition : public CTransition
291 @fn CUnitTest_SetCurrentTransition_Transition(CUnitTestContext& aUTContext,
292 TTransitionValidator& aValidator)
293 Intended Usage : Standard c'tor method.
294 Error Condition : None.
296 @param aUTContext The context this transition is operating in.
297 @param aValidator Used for checking the pre & post conditions of the test object.
299 @post CUnitTest_SetCurrentTransition_Transition is fully constructed.
301 CUnitTest_SetCurrentTransition_Transition(CUnitTestContext& aUTContext,
302 TTransitionValidator& aValidator);
305 Intended Usage : To execute the CUnitTest::SetCurrentTransition method for the test harness.
306 Error Condition : Leaves with an error code.
307 @leave KErrNoMemory, (@see CUnitTest::SetCurrentTransition)
310 @pre CUnitTest_SetCurrentTransition_Transition is fully constructed.
311 @post No change in the CUnitTest_SetCurrentTransition_Transition apart
312 from iUnitTest, which may have changed state.
313 (@see CUnitTest::SetCurrentTransition post-condition) for iUnitTest's new state.
315 inline void TransitMethodL();
319 Intended Usage : To provide access to the unit test context cast to the correct type.
320 Error Condition : None.
322 @return The unit test context cast to a CUnitTest_UnitTestContext
323 @pre iUTContext is a valid CUnitTest_UnitTestContext.
324 @post No change in the CUnitTest_SetCurrentTransition_Transition
326 inline CUnitTest_UnitTestContext& Context() const;
327 }; // CUnitTest_SetCurrentTransition_Transition
329 // ______________________________________________________________________________
334 Comments : Transition test of the CUnitTest::SetParametersL method.
336 class CUnitTest_SetParametersL_Transition : public CTransitionType
340 @fn CUnitTest_SetParametersL_Transition(CUnitTestContext& aUTContext,
341 TTransitionValidator& aValidator)
342 Intended Usage : Standard c'tor method.
343 Error Condition : None.
345 @param aUTContext The context this transition is operating in.
346 @param aValidator Used for checking the pre & post conditions of the test object.
348 @post CUnitTest_SetParametersL_Transition is fully constructed.
350 CUnitTest_SetParametersL_Transition(CUnitTestContext& aUTContext,
351 TTransitionValidator& aValidator);
354 Intended Usage : To execute the CUnitTest::SetParametersL method for the test harness.
355 Error Condition : Leaves with an error code.
356 @leave KErrNoMemory, (@see CUnitTest::SetParametersL)
359 @pre CUnitTest_SetParametersL_Transition is fully constructed.
360 @post No change in the CUnitTest_SetParametersL_Transition apart
361 from iUnitTest, which may have changed state.
362 (@see CUnitTest::SetParametersL post-condition) for iUnitTest's new state.
364 inline void TransitMethodL();
368 Intended Usage : To provide access to the unit test context cast to the correct type.
369 Error Condition : None.
371 @return The unit test context cast to a CUnitTest_UnitTestContext
372 @pre iUTContext is a valid CUnitTest_UnitTestContext.
373 @post No change in the CUnitTest_SetParametersL_Transition
375 inline CUnitTest_UnitTestContext& Context() const;
376 }; // CUnitTest_SetParametersL_Transition
378 // ______________________________________________________________________________
383 Comments : Transition test of the CUnitTest::PrepareUnitTestL method.
385 class CUnitTest_PrepareUnitTestL_Transition : public CTransitionType
389 @fn CUnitTest_PrepareUnitTestL_Transition(CUnitTestContext& aUTContext,
390 TTransitionValidator& aValidator)
391 Intended Usage : Standard c'tor method.
392 Error Condition : None.
394 @param aUTContext The context this transition is operating in.
395 @param aValidator Used for checking the pre & post conditions of the test object.
397 @post CUnitTest_PrepareUnitTestL_Transition is fully constructed.
399 CUnitTest_PrepareUnitTestL_Transition(CUnitTestContext& aUTContext,
400 TTransitionValidator& aValidator);
403 Intended Usage : To execute the CUnitTest::PrepareUnitTestL method for the test harness.
404 Error Condition : Leaves with an error code.
405 @leave KErrNoMemory, (@see CUnitTest::PrepareUnitTestL)
408 @pre CUnitTest_PrepareUnitTestL_Transition is fully constructed.
409 @post No change in the CUnitTest_PrepareUnitTestL_Transition apart
410 from iUnitTest, which may have changed state.
411 (@see CUnitTest::PrepareUnitTestL post-condition) for iUnitTest's new state.
413 inline void TransitMethodL();
417 Intended Usage : To provide access to the unit test context cast to the correct type.
418 Error Condition : None.
420 @return The unit test context cast to a CUnitTest_UnitTestContext
421 @pre iUTContext is a valid CUnitTest_UnitTestContext.
422 @post No change in the CUnitTest_PrepareUnitTestL_Transition
424 inline CUnitTest_UnitTestContext& Context() const;
425 }; // CUnitTest_PrepareUnitTestL_Transition
427 // ______________________________________________________________________________
432 Comments : Transition test of the CUnitTest::RunTest method.
434 class CUnitTest_RunTest_Transition : public CTransition
438 @fn CUnitTest_RunTest_Transition(CUnitTestContext& aUTContext,
439 TTransitionValidator& aValidator)
440 Intended Usage : Standard c'tor method.
441 Error Condition : None.
443 @param aUTContext The context this transition is operating in.
444 @param aValidator Used for checking the pre & post conditions of the test object.
446 @post CUnitTest_RunTest_Transition is fully constructed.
448 CUnitTest_RunTest_Transition(CUnitTestContext& aUTContext,
449 TTransitionValidator& aValidator);
452 Intended Usage : To execute the CUnitTest::RunTest method for the test harness.
453 Error Condition : Leaves with an error code.
454 @leave KErrNoMemory, (@see CUnitTest::RunTest)
457 @pre CUnitTest_RunTest_Transition is fully constructed.
458 @post No change in the CUnitTest_RunTest_Transition apart
459 from iUnitTest, which may have changed state.
460 (@see CUnitTest::RunTest post-condition) for iUnitTest's new state.
462 inline void TransitMethodL();
466 Intended Usage : To provide access to the unit test context cast to the correct type.
467 Error Condition : None.
469 @return The unit test context cast to a CUnitTest_UnitTestContext
470 @pre iUTContext is a valid CUnitTest_UnitTestContext.
471 @post No change in the CUnitTest_RunTest_Transition
473 inline CUnitTest_UnitTestContext& Context() const;
474 }; // CUnitTest_RunTest_Transition
477 // ______________________________________________________________________________
482 Comments : Transition test of the CUnitTest::AddTransitionL method.
484 class CUnitTest_AddTransitionL_Transition : public CTransitionType
488 @fn CUnitTest_AddTransitionL_Transition(CUnitTestContext& aUTContext,
489 TTransitionValidator& aValidator)
490 Intended Usage : Standard c'tor method.
491 Error Condition : None.
493 @param aUTContext The context this transition is operating in.
494 @param aValidator Used for checking the pre & post conditions of the test object.
496 @post CUnitTest_AddTransitionL_Transition is fully constructed.
498 CUnitTest_AddTransitionL_Transition(CUnitTestContext& aUTContext,
499 TTransitionValidator& aValidator);
502 Intended Usage : To execute the CUnitTest::AddTransitionL method for the test harness.
503 Error Condition : Leaves with an error code.
504 @leave KErrNoMemory, (@see CUnitTest::AddTransitionL)
507 @pre CUnitTest_AddTransitionL_Transition is fully constructed.
508 @post No change in the CUnitTest_AddTransitionL_Transition apart
509 from iUnitTest, which may have changed state.
510 (@see CUnitTest::AddTransitionL post-condition) for iUnitTest's new state.
512 inline void TransitMethodL();
516 Intended Usage : To provide access to the unit test context cast to the correct type.
517 Error Condition : None.
519 @return The unit test context cast to a CUnitTest_UnitTestContext
520 @pre iUTContext is a valid CUnitTest_UnitTestContext.
521 @post No change in the CUnitTest_AddTransitionL_Transition
523 inline CUnitTest_UnitTestContext& Context() const;
524 }; // CUnitTest_AddTransitionL_Transition
526 // ______________________________________________________________________________
531 Comments : Transition test of the CUnitTest::AddBlockingTransitionL method.
533 class CUnitTest_AddBlockingTransitionL_Transition : public CTransitionType
537 @fn CUnitTest_AddBlockingTransitionL_Transition(CUnitTestContext& aUTContext,
538 TTransitionValidator& aValidator)
539 Intended Usage : Standard c'tor method.
540 Error Condition : None.
542 @param aUTContext The context this transition is operating in.
543 @param aValidator Used for checking the pre & post conditions of the test object.
545 @post CUnitTest_AddBlockingTransitionL_Transition is fully constructed.
547 CUnitTest_AddBlockingTransitionL_Transition(CUnitTestContext& aUTContext,
548 TTransitionValidator& aValidator);
551 Intended Usage : To execute the CUnitTest::AddBlockingTransitionL method for the test harness.
552 Error Condition : Leaves with an error code.
553 @leave KErrNoMemory, (@see CUnitTest::AddBlockingTransitionL)
556 @pre CUnitTest_AddBlockingTransitionL_Transition is fully constructed.
557 @post No change in the CUnitTest_AddBlockingTransitionL_Transition apart
558 from iUnitTest, which may have changed state.
559 (@see CUnitTest::AddBlockingTransitionL post-condition) for iUnitTest's new state.
561 inline void TransitMethodL();
565 Intended Usage : To provide access to the unit test context cast to the correct type.
566 Error Condition : None.
568 @return The unit test context cast to a CUnitTest_UnitTestContext
569 @pre iUTContext is a valid CUnitTest_UnitTestContext.
570 @post No change in the CUnitTest_AddBlockingTransitionL_Transition
572 inline CUnitTest_UnitTestContext& Context() const;
573 }; // CUnitTest_AddBlockingTransitionL_Transition
575 // ______________________________________________________________________________
580 Comments : Transition test of the CUnitTest::AddLeaveErrorCodeL method.
582 class CUnitTest_AddLeaveErrorCodeL_Transition : public CTransitionType
586 @fn CUnitTest_AddLeaveErrorCodeL_Transition(CUnitTestContext& aUTContext,
587 TTransitionValidator& aValidator)
588 Intended Usage : Standard c'tor method.
589 Error Condition : None.
591 @param aUTContext The context this transition is operating in.
592 @param aValidator Used for checking the pre & post conditions of the test object.
594 @post CUnitTest_AddLeaveErrorCodeL_Transition is fully constructed.
596 CUnitTest_AddLeaveErrorCodeL_Transition(CUnitTestContext& aUTContext,
597 TTransitionValidator& aValidator);
600 Intended Usage : To execute the CUnitTest::AddLeaveErrorCodeL method for the test harness.
601 Error Condition : Leaves with an error code.
602 @leave KErrNoMemory, (@see CUnitTest::AddLeaveErrorCodeL)
605 @pre CUnitTest_AddLeaveErrorCodeL_Transition is fully constructed.
606 @post No change in the CUnitTest_AddLeaveErrorCodeL_Transition apart
607 from iUnitTest, which may have changed state.
608 (@see CUnitTest::AddLeaveErrorCodeL post-condition) for iUnitTest's new state.
610 inline void TransitMethodL();
614 Intended Usage : To provide access to the unit test context cast to the correct type.
615 Error Condition : None.
617 @return The unit test context cast to a CUnitTest_UnitTestContext
618 @pre iUTContext is a valid CUnitTest_UnitTestContext.
619 @post No change in the CUnitTest_AddLeaveErrorCodeL_Transition
621 inline CUnitTest_UnitTestContext& Context() const;
622 }; // CUnitTest_AddLeaveErrorCodeL_Transition
624 // ______________________________________________________________________________
629 Comments : Transition test of the CUnitTest::UnitTestName method.
631 class CUnitTest_UnitTestName_Transition : public CTransition
635 @fn CUnitTest_UnitTestName_Transition(CUnitTestContext& aUTContext,
636 TTransitionValidator& aValidator)
637 Intended Usage : Standard c'tor method.
638 Error Condition : None.
640 @param aUTContext The context this transition is operating in.
641 @param aValidator Used for checking the pre & post conditions of the test object.
643 @post CUnitTest_UnitTestName_Transition is fully constructed.
645 CUnitTest_UnitTestName_Transition(CUnitTestContext& aUTContext,
646 TTransitionValidator& aValidator);
649 Intended Usage : To execute the CUnitTest::UnitTestName method for the test harness.
650 Error Condition : Leaves with an error code.
651 @leave KErrNoMemory, (@see CUnitTest::UnitTestName)
654 @pre CUnitTest_UnitTestName_Transition is fully constructed.
655 @post No change in the CUnitTest_UnitTestName_Transition apart
656 from iUnitTest, which may have changed state.
657 (@see CUnitTest::UnitTestName post-condition) for iUnitTest's new state.
659 inline void TransitMethodL();
663 Intended Usage : To provide access to the unit test context cast to the correct type.
664 Error Condition : None.
666 @return The unit test context cast to a CUnitTest_UnitTestContext
667 @pre iUTContext is a valid CUnitTest_UnitTestContext.
668 @post No change in the CUnitTest_UnitTestName_Transition
670 inline CUnitTest_UnitTestContext& Context() const;
671 }; // CUnitTest_UnitTestName_Transition
674 // Add additional Transition class definitions here...
676 #include "UnitTestTransitions.inl"
678 #include "UnitTestUnitTestContext.inl"
680 #endif // __UNITTESTTRANSITIONS_H__