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 CComponentTester class methods.
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
// ______________________________________________________________________________
|
sl@0
|
19 |
//
|
sl@0
|
20 |
_LIT(KComponentTesterNewLTransition,"CComponentTester_NewL_Transition");
|
sl@0
|
21 |
|
sl@0
|
22 |
inline CComponentTester_NewL_Transition::CComponentTester_NewL_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
23 |
TTransitionValidator& aValidator)
|
sl@0
|
24 |
: CTransitionType(KComponentTesterNewLTransition, aUTContext, aValidator)
|
sl@0
|
25 |
{
|
sl@0
|
26 |
// Do nothing here.
|
sl@0
|
27 |
}
|
sl@0
|
28 |
|
sl@0
|
29 |
inline void CComponentTester_NewL_Transition::TransitMethodL()
|
sl@0
|
30 |
{
|
sl@0
|
31 |
_LIT(KComponentTesterNewLTransitMethod, "CComponentTester::NewL transition");
|
sl@0
|
32 |
Context().DataLogger().LogInformation(KComponentTesterNewLTransitMethod);
|
sl@0
|
33 |
TComponentTester_StateAccessor& accessor = REINTERPRET_CAST(TComponentTester_StateAccessor&, Context().StateAccessor());
|
sl@0
|
34 |
Context().iComponentUnderTest = accessor.CreateComponentTester(*(Context().iComponentTester), *Context().iDataLogger, *Context().iObserver);
|
sl@0
|
35 |
}
|
sl@0
|
36 |
|
sl@0
|
37 |
inline CComponentTester_UnitTestContext& CComponentTester_NewL_Transition::Context() const
|
sl@0
|
38 |
{
|
sl@0
|
39 |
return REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext);
|
sl@0
|
40 |
}
|
sl@0
|
41 |
|
sl@0
|
42 |
// ______________________________________________________________________________
|
sl@0
|
43 |
//
|
sl@0
|
44 |
_LIT(KComponentTesterDtorTransition,"CComponentTester_Dtor_Transition");
|
sl@0
|
45 |
|
sl@0
|
46 |
inline CComponentTester_Dtor_Transition::CComponentTester_Dtor_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
47 |
TTransitionValidator& aValidator)
|
sl@0
|
48 |
: CTransition(KComponentTesterDtorTransition, aUTContext, aValidator)
|
sl@0
|
49 |
{
|
sl@0
|
50 |
// Do nothing here.
|
sl@0
|
51 |
}
|
sl@0
|
52 |
|
sl@0
|
53 |
inline void CComponentTester_Dtor_Transition::TransitMethodL()
|
sl@0
|
54 |
{
|
sl@0
|
55 |
_LIT(KComponentTesterDtorTransitMethod, "CComponentTester::Dtor transition");
|
sl@0
|
56 |
Context().DataLogger().LogInformation(KComponentTesterDtorTransitMethod);
|
sl@0
|
57 |
delete Context().iComponentTester;
|
sl@0
|
58 |
Context().iComponentTester = NULL;
|
sl@0
|
59 |
}
|
sl@0
|
60 |
|
sl@0
|
61 |
inline CComponentTester_UnitTestContext& CComponentTester_Dtor_Transition::Context() const
|
sl@0
|
62 |
{
|
sl@0
|
63 |
return REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext);
|
sl@0
|
64 |
}
|
sl@0
|
65 |
|
sl@0
|
66 |
// ______________________________________________________________________________
|
sl@0
|
67 |
//
|
sl@0
|
68 |
_LIT(KComponentTesterTransitionSetsLTransition,"CComponentTester_TransitionSetsL_Transition");
|
sl@0
|
69 |
|
sl@0
|
70 |
inline CComponentTester_TransitionSetsL_Transition::CComponentTester_TransitionSetsL_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
71 |
TTransitionValidator& aValidator)
|
sl@0
|
72 |
: CTransitionType(KComponentTesterTransitionSetsLTransition, aUTContext, aValidator)
|
sl@0
|
73 |
{
|
sl@0
|
74 |
// Do nothing here.
|
sl@0
|
75 |
}
|
sl@0
|
76 |
|
sl@0
|
77 |
inline void CComponentTester_TransitionSetsL_Transition::TransitMethodL()
|
sl@0
|
78 |
{
|
sl@0
|
79 |
_LIT(KComponentTesterTransitionSetsLTransitMethod, "CComponentTester::TransitionSetsL transition");
|
sl@0
|
80 |
Context().DataLogger().LogInformation(KComponentTesterTransitionSetsLTransitMethod);
|
sl@0
|
81 |
Context().iComponentTester->TransitionSetsL();
|
sl@0
|
82 |
}
|
sl@0
|
83 |
|
sl@0
|
84 |
inline CComponentTester_UnitTestContext& CComponentTester_TransitionSetsL_Transition::Context() const
|
sl@0
|
85 |
{
|
sl@0
|
86 |
return REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext);
|
sl@0
|
87 |
}
|
sl@0
|
88 |
|
sl@0
|
89 |
// ______________________________________________________________________________
|
sl@0
|
90 |
//
|
sl@0
|
91 |
_LIT(KComponentTesterAddUnitTestLTransition,"CComponentTester_AddUnitTestL_Transition");
|
sl@0
|
92 |
|
sl@0
|
93 |
inline CComponentTester_AddUnitTestL_Transition::CComponentTester_AddUnitTestL_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
94 |
TTransitionValidator& aValidator)
|
sl@0
|
95 |
: CTransitionType(KComponentTesterAddUnitTestLTransition, aUTContext, aValidator)
|
sl@0
|
96 |
{
|
sl@0
|
97 |
// Do nothing here.
|
sl@0
|
98 |
}
|
sl@0
|
99 |
|
sl@0
|
100 |
inline void CComponentTester_AddUnitTestL_Transition::TransitMethodL()
|
sl@0
|
101 |
{
|
sl@0
|
102 |
_LIT(KComponentTesterAddUnitTestLTransitMethod, "CComponentTester::AddUnitTestL transition");
|
sl@0
|
103 |
Context().DataLogger().LogInformation(KComponentTesterAddUnitTestLTransitMethod);
|
sl@0
|
104 |
TComponentTester_StateAccessor& accessor = REINTERPRET_CAST(TComponentTester_StateAccessor&, Context().StateAccessor());
|
sl@0
|
105 |
accessor.AddUnitTestL(*(Context().iComponentTester), (Context().iUnitTest));
|
sl@0
|
106 |
}
|
sl@0
|
107 |
|
sl@0
|
108 |
inline CComponentTester_UnitTestContext& CComponentTester_AddUnitTestL_Transition::Context() const
|
sl@0
|
109 |
{
|
sl@0
|
110 |
return REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext);
|
sl@0
|
111 |
}
|
sl@0
|
112 |
|
sl@0
|
113 |
// ______________________________________________________________________________
|
sl@0
|
114 |
//
|
sl@0
|
115 |
_LIT(KComponentTesterAddParamUnitTestLTransition,"CComponentTester_AddParamUnitTestL_Transition");
|
sl@0
|
116 |
|
sl@0
|
117 |
inline CComponentTester_AddParamUnitTestL_Transition::CComponentTester_AddParamUnitTestL_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
118 |
TTransitionValidator& aValidator)
|
sl@0
|
119 |
: CTransitionType(KComponentTesterAddParamUnitTestLTransition, aUTContext, aValidator)
|
sl@0
|
120 |
{
|
sl@0
|
121 |
// Do nothing here.
|
sl@0
|
122 |
}
|
sl@0
|
123 |
|
sl@0
|
124 |
inline void CComponentTester_AddParamUnitTestL_Transition::TransitMethodL()
|
sl@0
|
125 |
{
|
sl@0
|
126 |
_LIT(KComponentTesterAddParamUnitTestLTransitMethod, "CComponentTester::AddParamUnitTestL transition");
|
sl@0
|
127 |
Context().DataLogger().LogInformation(KComponentTesterAddParamUnitTestLTransitMethod);
|
sl@0
|
128 |
TComponentTester_StateAccessor& accessor = REINTERPRET_CAST(TComponentTester_StateAccessor&, Context().StateAccessor());
|
sl@0
|
129 |
accessor.AddParamUnitTestL(*(Context().iComponentTester), (Context().iUnitTest));
|
sl@0
|
130 |
}
|
sl@0
|
131 |
|
sl@0
|
132 |
inline CComponentTester_UnitTestContext& CComponentTester_AddParamUnitTestL_Transition::Context() const
|
sl@0
|
133 |
{
|
sl@0
|
134 |
return REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext);
|
sl@0
|
135 |
}
|
sl@0
|
136 |
|
sl@0
|
137 |
// ______________________________________________________________________________
|
sl@0
|
138 |
//
|
sl@0
|
139 |
_LIT(KComponentTesterTestComponentTransition,"CComponentTester_TestComponent_Transition");
|
sl@0
|
140 |
|
sl@0
|
141 |
inline CComponentTester_TestComponent_Transition::CComponentTester_TestComponent_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
142 |
TTransitionValidator& aValidator)
|
sl@0
|
143 |
: CTransition(KComponentTesterTestComponentTransition, aUTContext, aValidator)
|
sl@0
|
144 |
{
|
sl@0
|
145 |
// Do nothing here.
|
sl@0
|
146 |
}
|
sl@0
|
147 |
|
sl@0
|
148 |
inline void CComponentTester_TestComponent_Transition::TransitMethodL()
|
sl@0
|
149 |
{
|
sl@0
|
150 |
_LIT(KComponentTesterTestComponentTransitMethod, "CComponentTester::TestComponent transition");
|
sl@0
|
151 |
Context().DataLogger().LogInformation(KComponentTesterTestComponentTransitMethod);
|
sl@0
|
152 |
Context().iComponentTester->TestComponent(&Context().iTests);
|
sl@0
|
153 |
}
|
sl@0
|
154 |
|
sl@0
|
155 |
inline CComponentTester_UnitTestContext& CComponentTester_TestComponent_Transition::Context() const
|
sl@0
|
156 |
{
|
sl@0
|
157 |
return REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext);
|
sl@0
|
158 |
}
|
sl@0
|
159 |
|
sl@0
|
160 |
// ______________________________________________________________________________
|
sl@0
|
161 |
//
|
sl@0
|
162 |
_LIT(KComponentTesterRunLTransition,"CComponentTester_RunL_Transition");
|
sl@0
|
163 |
|
sl@0
|
164 |
inline CComponentTester_RunL_Transition::CComponentTester_RunL_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
165 |
TTransitionValidator& aValidator)
|
sl@0
|
166 |
: CTransitionType(KComponentTesterRunLTransition, aUTContext, aValidator)
|
sl@0
|
167 |
{
|
sl@0
|
168 |
// Do nothing here.
|
sl@0
|
169 |
}
|
sl@0
|
170 |
|
sl@0
|
171 |
inline void CComponentTester_RunL_Transition::TransitMethodL()
|
sl@0
|
172 |
{
|
sl@0
|
173 |
_LIT(KComponentTesterRunLTransitMethod, "CComponentTester::RunL transition");
|
sl@0
|
174 |
Context().DataLogger().LogInformation(KComponentTesterRunLTransitMethod);
|
sl@0
|
175 |
TComponentTester_StateAccessor& accessor = REINTERPRET_CAST(TComponentTester_StateAccessor&, Context().StateAccessor());
|
sl@0
|
176 |
accessor.RunL(*(Context().iComponentTester));
|
sl@0
|
177 |
}
|
sl@0
|
178 |
|
sl@0
|
179 |
inline CComponentTester_UnitTestContext& CComponentTester_RunL_Transition::Context() const
|
sl@0
|
180 |
{
|
sl@0
|
181 |
return REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext);
|
sl@0
|
182 |
}
|
sl@0
|
183 |
|
sl@0
|
184 |
// ______________________________________________________________________________
|
sl@0
|
185 |
//
|
sl@0
|
186 |
_LIT(KComponentTesterCompleteTransition,"CComponentTester_Complete_Transition");
|
sl@0
|
187 |
|
sl@0
|
188 |
inline CComponentTester_Complete_Transition::CComponentTester_Complete_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
189 |
TTransitionValidator& aValidator)
|
sl@0
|
190 |
: CTransition(KComponentTesterCompleteTransition, aUTContext, aValidator)
|
sl@0
|
191 |
{
|
sl@0
|
192 |
// Do nothing here.
|
sl@0
|
193 |
}
|
sl@0
|
194 |
|
sl@0
|
195 |
inline void CComponentTester_Complete_Transition::TransitMethodL()
|
sl@0
|
196 |
{
|
sl@0
|
197 |
_LIT(KComponentTesterCompleteTransitMethod, "CComponentTester::Complete transition");
|
sl@0
|
198 |
Context().DataLogger().LogInformation(KComponentTesterCompleteTransitMethod);
|
sl@0
|
199 |
Context().iComponentTester->Complete(Context().iUnitTest);
|
sl@0
|
200 |
}
|
sl@0
|
201 |
|
sl@0
|
202 |
inline CComponentTester_UnitTestContext& CComponentTester_Complete_Transition::Context() const
|
sl@0
|
203 |
{
|
sl@0
|
204 |
return REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext);
|
sl@0
|
205 |
}
|
sl@0
|
206 |
|
sl@0
|
207 |
|
sl@0
|
208 |
// Add additional Transition class Implementations here...
|
sl@0
|
209 |
|