sl@0
|
1 |
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// The implementation of the transition classes upon the CComponentInfo class methods.
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
// ______________________________________________________________________________
|
sl@0
|
19 |
//
|
sl@0
|
20 |
_LIT(KComponentInfoNewLTransition,"CComponentInfo_NewL_Transition");
|
sl@0
|
21 |
|
sl@0
|
22 |
inline CComponentInfo_NewL_Transition::CComponentInfo_NewL_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
23 |
TTransitionValidator& aValidator)
|
sl@0
|
24 |
: CTransitionType(KComponentInfoNewLTransition, aUTContext, aValidator)
|
sl@0
|
25 |
{
|
sl@0
|
26 |
// Do nothing here.
|
sl@0
|
27 |
}
|
sl@0
|
28 |
|
sl@0
|
29 |
inline void CComponentInfo_NewL_Transition::TransitMethodL()
|
sl@0
|
30 |
{
|
sl@0
|
31 |
_LIT(KComponentInfoNewLTransitMethod, "CComponentInfo::NewL transition");
|
sl@0
|
32 |
Context().DataLogger().LogInformation(KComponentInfoNewLTransitMethod);
|
sl@0
|
33 |
Context().iComponentInfo = CComponentInfo::NewL(Context().iEntryFunc,Context().iTestInfoArray);
|
sl@0
|
34 |
Context().iOwnParams = EFalse;
|
sl@0
|
35 |
}
|
sl@0
|
36 |
|
sl@0
|
37 |
inline CComponentInfo_UnitTestContext& CComponentInfo_NewL_Transition::Context() const
|
sl@0
|
38 |
{
|
sl@0
|
39 |
return REINTERPRET_CAST(CComponentInfo_UnitTestContext&,iUTContext);
|
sl@0
|
40 |
}
|
sl@0
|
41 |
|
sl@0
|
42 |
// ______________________________________________________________________________
|
sl@0
|
43 |
//
|
sl@0
|
44 |
_LIT(KComponentInfoDtorTransition,"CComponentInfo_Dtor_Transition");
|
sl@0
|
45 |
|
sl@0
|
46 |
inline CComponentInfo_Dtor_Transition::CComponentInfo_Dtor_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
47 |
TTransitionValidator& aValidator)
|
sl@0
|
48 |
: CTransition(KComponentInfoDtorTransition, aUTContext, aValidator)
|
sl@0
|
49 |
{
|
sl@0
|
50 |
// Do nothing here.
|
sl@0
|
51 |
}
|
sl@0
|
52 |
|
sl@0
|
53 |
inline void CComponentInfo_Dtor_Transition::TransitMethodL()
|
sl@0
|
54 |
{
|
sl@0
|
55 |
_LIT(KComponentInfoDtorTransitMethod, "CComponentInfo::Dtor transition");
|
sl@0
|
56 |
Context().DataLogger().LogInformation(KComponentInfoDtorTransitMethod);
|
sl@0
|
57 |
delete Context().iComponentInfo;
|
sl@0
|
58 |
Context().iComponentInfo = NULL;
|
sl@0
|
59 |
__UHEAP_MARKEND; /*removed from leaktransitiontest.cpp and added here to resolve alloc issue due to removal of reference to RHeap's member variable*/
|
sl@0
|
60 |
|
sl@0
|
61 |
}
|
sl@0
|
62 |
|
sl@0
|
63 |
inline CComponentInfo_UnitTestContext& CComponentInfo_Dtor_Transition::Context() const
|
sl@0
|
64 |
{
|
sl@0
|
65 |
return REINTERPRET_CAST(CComponentInfo_UnitTestContext&,iUTContext);
|
sl@0
|
66 |
}
|
sl@0
|
67 |
|
sl@0
|
68 |
// ______________________________________________________________________________
|
sl@0
|
69 |
//
|
sl@0
|
70 |
_LIT(KComponentInfoEntryTransition,"CComponentInfo_Entry_Transition");
|
sl@0
|
71 |
|
sl@0
|
72 |
inline CComponentInfo_Entry_Transition::CComponentInfo_Entry_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
73 |
TTransitionValidator& aValidator)
|
sl@0
|
74 |
: CTransition(KComponentInfoEntryTransition, aUTContext, aValidator)
|
sl@0
|
75 |
{
|
sl@0
|
76 |
// Do nothing here.
|
sl@0
|
77 |
}
|
sl@0
|
78 |
|
sl@0
|
79 |
inline void CComponentInfo_Entry_Transition::TransitMethodL()
|
sl@0
|
80 |
{
|
sl@0
|
81 |
_LIT(KComponentInfoEntryTransitMethod, "CComponentInfo::Entry transition");
|
sl@0
|
82 |
Context().DataLogger().LogInformation(KComponentInfoEntryTransitMethod);
|
sl@0
|
83 |
Context().iEntryFuncPostCheck = Context().iComponentInfo->GlobalEntryFunc();
|
sl@0
|
84 |
}
|
sl@0
|
85 |
|
sl@0
|
86 |
inline CComponentInfo_UnitTestContext& CComponentInfo_Entry_Transition::Context() const
|
sl@0
|
87 |
{
|
sl@0
|
88 |
return REINTERPRET_CAST(CComponentInfo_UnitTestContext&,iUTContext);
|
sl@0
|
89 |
}
|
sl@0
|
90 |
|
sl@0
|
91 |
// ______________________________________________________________________________
|
sl@0
|
92 |
//
|
sl@0
|
93 |
_LIT(KComponentInfoUnitTestsInfoTransition,"CComponentInfo_UnitTestsInfo_Transition");
|
sl@0
|
94 |
|
sl@0
|
95 |
inline CComponentInfo_UnitTestsInfo_Transition::CComponentInfo_UnitTestsInfo_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
96 |
TTransitionValidator& aValidator)
|
sl@0
|
97 |
: CTransition(KComponentInfoUnitTestsInfoTransition, aUTContext, aValidator)
|
sl@0
|
98 |
{
|
sl@0
|
99 |
// Do nothing here.
|
sl@0
|
100 |
}
|
sl@0
|
101 |
|
sl@0
|
102 |
inline void CComponentInfo_UnitTestsInfo_Transition::TransitMethodL()
|
sl@0
|
103 |
{
|
sl@0
|
104 |
_LIT(KComponentInfoUnitTestsInfoTransitMethod, "CComponentInfo::UnitTestsInfo transition");
|
sl@0
|
105 |
Context().DataLogger().LogInformation(KComponentInfoUnitTestsInfoTransitMethod);
|
sl@0
|
106 |
Context().iTestInfoArrayPostCheck = &Context().iComponentInfo->UnitTestsInfo();
|
sl@0
|
107 |
}
|
sl@0
|
108 |
|
sl@0
|
109 |
inline CComponentInfo_UnitTestContext& CComponentInfo_UnitTestsInfo_Transition::Context() const
|
sl@0
|
110 |
{
|
sl@0
|
111 |
return REINTERPRET_CAST(CComponentInfo_UnitTestContext&,iUTContext);
|
sl@0
|
112 |
}
|