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 CResolver test transition class definitions
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef __RESOLVERTRANSITIONS_H__
|
sl@0
|
19 |
#define __RESOLVERTRANSITIONS_H__
|
sl@0
|
20 |
|
sl@0
|
21 |
#include "LeakTestTransition.h"
|
sl@0
|
22 |
|
sl@0
|
23 |
#include <ecom/ecom.h>
|
sl@0
|
24 |
#include "RegistryData.h"
|
sl@0
|
25 |
|
sl@0
|
26 |
#define CTransitionType CLeakTestTransition
|
sl@0
|
27 |
// ______________________________________________________________________________
|
sl@0
|
28 |
//
|
sl@0
|
29 |
/**
|
sl@0
|
30 |
@internalComponent
|
sl@0
|
31 |
Comments : Provide all the CDefaultResolver specific
|
sl@0
|
32 |
parameters and behaviour on the CDefaultResolver
|
sl@0
|
33 |
test class for a transition.
|
sl@0
|
34 |
*/
|
sl@0
|
35 |
class CDefaultResolver_UnitTestContext : public CUnitTestContext
|
sl@0
|
36 |
{
|
sl@0
|
37 |
public:
|
sl@0
|
38 |
/**
|
sl@0
|
39 |
@fn CDefaultResolver_UnitTestContext(CDataLogger& aDataLogger,
|
sl@0
|
40 |
MStateAccessor& aStateAccessor,
|
sl@0
|
41 |
MTransitionObserver& aObserver)
|
sl@0
|
42 |
Intended Usage : Default constructor.
|
sl@0
|
43 |
Error Condition : None.
|
sl@0
|
44 |
@since 7.0
|
sl@0
|
45 |
@param aDataLogger The output logging object.
|
sl@0
|
46 |
@param aObserver The observer of this UnitTest's Transitions.
|
sl@0
|
47 |
@param aStateAccessor WhiteBox state access to the CDefaultResolver class under test.
|
sl@0
|
48 |
@pre None.
|
sl@0
|
49 |
@post CDefaultResolver_UnitTestContext is fully constructed, and initialised.
|
sl@0
|
50 |
*/
|
sl@0
|
51 |
inline CDefaultResolver_UnitTestContext(CDataLogger& aDataLogger,
|
sl@0
|
52 |
MStateAccessor& aStateAccessor,
|
sl@0
|
53 |
MTransitionObserver& aObserver);
|
sl@0
|
54 |
|
sl@0
|
55 |
/**
|
sl@0
|
56 |
@fn ~CDefaultResolver_UnitTestContext()
|
sl@0
|
57 |
Intended Usage : Default Destructor
|
sl@0
|
58 |
@since 7.0
|
sl@0
|
59 |
@pre CDefaultResolver_UnitTestContext is fully constructed.
|
sl@0
|
60 |
@post CDefaultResolver_UnitTestContext is fully destroyed
|
sl@0
|
61 |
*/
|
sl@0
|
62 |
virtual inline ~CDefaultResolver_UnitTestContext();
|
sl@0
|
63 |
|
sl@0
|
64 |
/** The instance of the class under test */
|
sl@0
|
65 |
CDefaultResolver* iDefaultResolver;
|
sl@0
|
66 |
/** The data store which is used by the resolver */
|
sl@0
|
67 |
CRegistryData* iRegistry;
|
sl@0
|
68 |
/** File server handle */
|
sl@0
|
69 |
RFs iFs;
|
sl@0
|
70 |
/** ECom example interface Uid */
|
sl@0
|
71 |
TUid iInterfaceUid;
|
sl@0
|
72 |
/** The Uid returned by IdentifyImplementationL. Used in post validation. */
|
sl@0
|
73 |
TUid iResolvedImpUid;
|
sl@0
|
74 |
/** Additional parameters used for resolving between implementations */
|
sl@0
|
75 |
TEComResolverParams iAdditionalParameters;
|
sl@0
|
76 |
/** The implementation data type to find when resolving */
|
sl@0
|
77 |
HBufC8* iImplementationType;
|
sl@0
|
78 |
/** The implementation match parameters to use when resolving */
|
sl@0
|
79 |
HBufC8* iMatchType;
|
sl@0
|
80 |
/** Indicates whether wildcard matching should be used during resolving */
|
sl@0
|
81 |
TBool iUseWildcards;
|
sl@0
|
82 |
/** The return value from Match() */
|
sl@0
|
83 |
TBool iMatchResult;
|
sl@0
|
84 |
/** The expected return value from Match(). Used in post validation checking */
|
sl@0
|
85 |
TBool iExpectedMatchResult;
|
sl@0
|
86 |
/** An array of potential implementations to resolve between */
|
sl@0
|
87 |
RImplInfoArray iImplementationData;
|
sl@0
|
88 |
}; // CDefaultResolver_UnitTestContext
|
sl@0
|
89 |
|
sl@0
|
90 |
// ______________________________________________________________________________
|
sl@0
|
91 |
//
|
sl@0
|
92 |
/**
|
sl@0
|
93 |
@internalComponent
|
sl@0
|
94 |
Comments : Transition test of the CDefaultResolver::NewL method.
|
sl@0
|
95 |
*/
|
sl@0
|
96 |
class CDefaultResolver_NewL_Transition : public CTransitionType
|
sl@0
|
97 |
{
|
sl@0
|
98 |
public:
|
sl@0
|
99 |
/**
|
sl@0
|
100 |
@fn CDefaultResolver_NewL_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
101 |
TTransitionValidator& aValidator)
|
sl@0
|
102 |
Intended Usage : Standard c'tor method.
|
sl@0
|
103 |
Error Condition : None.
|
sl@0
|
104 |
@since 7.0
|
sl@0
|
105 |
@param aUTContext The context this transition is operating in.
|
sl@0
|
106 |
@param aValidator Used for checking the pre & post conditions of the test object.
|
sl@0
|
107 |
@pre None.
|
sl@0
|
108 |
@post CDefaultResolver_NewL_Transition is fully constructed.
|
sl@0
|
109 |
*/
|
sl@0
|
110 |
CDefaultResolver_NewL_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
111 |
TTransitionValidator& aValidator);
|
sl@0
|
112 |
/**
|
sl@0
|
113 |
@fn TransitMethodL()
|
sl@0
|
114 |
Intended Usage : To execute the CDefaultResolver::NewL method for the test harness.
|
sl@0
|
115 |
Error Condition : Leaves with an error code.
|
sl@0
|
116 |
@leave KErrNoMemory, (@see CDefaultResolver::NewL)
|
sl@0
|
117 |
@since 7.0
|
sl@0
|
118 |
@return None
|
sl@0
|
119 |
@pre CDefaultResolver_NewL_Transition is fully constructed.
|
sl@0
|
120 |
@post No change in the CDefaultResolver_NewL_Transition apart
|
sl@0
|
121 |
from iDefaultResolver, which may have changed state.
|
sl@0
|
122 |
(@see CDefaultResolver::NewL post-condition) for iDefaultResolver's new state.
|
sl@0
|
123 |
*/
|
sl@0
|
124 |
inline void TransitMethodL();
|
sl@0
|
125 |
|
sl@0
|
126 |
/**
|
sl@0
|
127 |
@fn Context() const
|
sl@0
|
128 |
Intended Usage : To provide access to the unit test context cast to the correct type.
|
sl@0
|
129 |
Error Condition : None.
|
sl@0
|
130 |
@since 7.0
|
sl@0
|
131 |
@return The unit test context cast to a CDefaultResolver_UnitTestContext
|
sl@0
|
132 |
@pre iUTContext is a valid CDefaultResolver_UnitTestContext.
|
sl@0
|
133 |
@post No change in the CDefaultResolver_NewL_Transition
|
sl@0
|
134 |
*/
|
sl@0
|
135 |
inline CDefaultResolver_UnitTestContext& Context() const;
|
sl@0
|
136 |
}; // CDefaultResolver_NewL_Transition
|
sl@0
|
137 |
|
sl@0
|
138 |
// ______________________________________________________________________________
|
sl@0
|
139 |
//
|
sl@0
|
140 |
/**
|
sl@0
|
141 |
@internalComponent
|
sl@0
|
142 |
Comments : Transition test of the CDefaultResolver::Dtor method.
|
sl@0
|
143 |
*/
|
sl@0
|
144 |
class CDefaultResolver_Dtor_Transition : public CTransition
|
sl@0
|
145 |
{
|
sl@0
|
146 |
public:
|
sl@0
|
147 |
/**
|
sl@0
|
148 |
@fn CDefaultResolver_Dtor_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
149 |
TTransitionValidator& aValidator)
|
sl@0
|
150 |
Intended Usage : Standard c'tor method.
|
sl@0
|
151 |
Error Condition : None.
|
sl@0
|
152 |
@since 7.0
|
sl@0
|
153 |
@param aUTContext The context this transition is operating in.
|
sl@0
|
154 |
@param aValidator Used for checking the pre & post conditions of the test object.
|
sl@0
|
155 |
@pre None.
|
sl@0
|
156 |
@post CDefaultResolver_Dtor_Transition is fully constructed.
|
sl@0
|
157 |
*/
|
sl@0
|
158 |
CDefaultResolver_Dtor_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
159 |
TTransitionValidator& aValidator);
|
sl@0
|
160 |
/**
|
sl@0
|
161 |
@fn TransitMethodL()
|
sl@0
|
162 |
Intended Usage : To execute the CDefaultResolver::Dtor method for the test harness.
|
sl@0
|
163 |
Error Condition : Leaves with an error code.
|
sl@0
|
164 |
@leave KErrNoMemory, (@see CDefaultResolver::Dtor)
|
sl@0
|
165 |
@since 7.0
|
sl@0
|
166 |
@return None
|
sl@0
|
167 |
@pre CDefaultResolver_Dtor_Transition is fully constructed.
|
sl@0
|
168 |
@post No change in the CDefaultResolver_Dtor_Transition apart
|
sl@0
|
169 |
from iDefaultResolver, which may have changed state.
|
sl@0
|
170 |
(@see CDefaultResolver::Dtor post-condition) for iDefaultResolver's new state.
|
sl@0
|
171 |
*/
|
sl@0
|
172 |
inline void TransitMethodL();
|
sl@0
|
173 |
|
sl@0
|
174 |
/**
|
sl@0
|
175 |
@fn Context() const
|
sl@0
|
176 |
Intended Usage : To provide access to the unit test context cast to the correct type.
|
sl@0
|
177 |
Error Condition : None.
|
sl@0
|
178 |
@since 7.0
|
sl@0
|
179 |
@return The unit test context cast to a CDefaultResolver_UnitTestContext
|
sl@0
|
180 |
@pre iUTContext is a valid CDefaultResolver_UnitTestContext.
|
sl@0
|
181 |
@post No change in the CDefaultResolver_Dtor_Transition
|
sl@0
|
182 |
*/
|
sl@0
|
183 |
inline CDefaultResolver_UnitTestContext& Context() const;
|
sl@0
|
184 |
}; // CDefaultResolver_Dtor_Transition
|
sl@0
|
185 |
|
sl@0
|
186 |
// ______________________________________________________________________________
|
sl@0
|
187 |
//
|
sl@0
|
188 |
/**
|
sl@0
|
189 |
@internalComponent
|
sl@0
|
190 |
Comments : Transition test of the CDefaultResolver::IdentifyImplementationL method.
|
sl@0
|
191 |
*/
|
sl@0
|
192 |
class CDefaultResolver_IdentifyImplementationL_Transition : public CTransitionType
|
sl@0
|
193 |
{
|
sl@0
|
194 |
public:
|
sl@0
|
195 |
/**
|
sl@0
|
196 |
@fn CDefaultResolver_IdentifyImplementationL_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
197 |
TTransitionValidator& aValidator)
|
sl@0
|
198 |
Intended Usage : Standard c'tor method.
|
sl@0
|
199 |
Error Condition : None.
|
sl@0
|
200 |
@since 7.0
|
sl@0
|
201 |
@param aUTContext The context this transition is operating in.
|
sl@0
|
202 |
@param aValidator Used for checking the pre & post conditions of the test object.
|
sl@0
|
203 |
@pre None.
|
sl@0
|
204 |
@post CDefaultResolver_IdentifyImplementationL_Transition is fully constructed.
|
sl@0
|
205 |
*/
|
sl@0
|
206 |
CDefaultResolver_IdentifyImplementationL_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
207 |
TTransitionValidator& aValidator);
|
sl@0
|
208 |
/**
|
sl@0
|
209 |
@fn TransitMethodL()
|
sl@0
|
210 |
Intended Usage : To execute the CDefaultResolver::IdentifyImplementationL method for the test harness.
|
sl@0
|
211 |
Error Condition : Leaves with an error code.
|
sl@0
|
212 |
@leave KErrNoMemory, (@see CDefaultResolver::IdentifyImplementationL)
|
sl@0
|
213 |
@since 7.0
|
sl@0
|
214 |
@return None
|
sl@0
|
215 |
@pre CDefaultResolver_IdentifyImplementationL_Transition is fully constructed.
|
sl@0
|
216 |
@post No change in the CDefaultResolver_IdentifyImplementationL_Transition apart
|
sl@0
|
217 |
from iDefaultResolver, which may have changed state.
|
sl@0
|
218 |
(@see CDefaultResolver::IdentifyImplementationL post-condition) for iDefaultResolver's new state.
|
sl@0
|
219 |
*/
|
sl@0
|
220 |
inline void TransitMethodL();
|
sl@0
|
221 |
|
sl@0
|
222 |
/**
|
sl@0
|
223 |
@fn Context() const
|
sl@0
|
224 |
Intended Usage : To provide access to the unit test context cast to the correct type.
|
sl@0
|
225 |
Error Condition : None.
|
sl@0
|
226 |
@since 7.0
|
sl@0
|
227 |
@return The unit test context cast to a CDefaultResolver_UnitTestContext
|
sl@0
|
228 |
@pre iUTContext is a valid CDefaultResolver_UnitTestContext.
|
sl@0
|
229 |
@post No change in the CDefaultResolver_IdentifyImplementationL_Transition
|
sl@0
|
230 |
*/
|
sl@0
|
231 |
inline CDefaultResolver_UnitTestContext& Context() const;
|
sl@0
|
232 |
}; // CDefaultResolver_IdentifyImplementationL_Transition
|
sl@0
|
233 |
|
sl@0
|
234 |
// ______________________________________________________________________________
|
sl@0
|
235 |
//
|
sl@0
|
236 |
/**
|
sl@0
|
237 |
@internalComponent
|
sl@0
|
238 |
Comments : Transition test of the CDefaultResolver::ListAllL method.
|
sl@0
|
239 |
*/
|
sl@0
|
240 |
class CDefaultResolver_ListAllL_Transition : public CTransitionType
|
sl@0
|
241 |
{
|
sl@0
|
242 |
public:
|
sl@0
|
243 |
/**
|
sl@0
|
244 |
@fn CDefaultResolver_ListAllL_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
245 |
TTransitionValidator& aValidator)
|
sl@0
|
246 |
Intended Usage : Standard c'tor method.
|
sl@0
|
247 |
Error Condition : None.
|
sl@0
|
248 |
@since 7.0
|
sl@0
|
249 |
@param aUTContext The context this transition is operating in.
|
sl@0
|
250 |
@param aValidator Used for checking the pre & post conditions of the test object.
|
sl@0
|
251 |
@pre None.
|
sl@0
|
252 |
@post CDefaultResolver_ListAllL_Transition is fully constructed.
|
sl@0
|
253 |
*/
|
sl@0
|
254 |
CDefaultResolver_ListAllL_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
255 |
TTransitionValidator& aValidator);
|
sl@0
|
256 |
/**
|
sl@0
|
257 |
@fn TransitMethodL()
|
sl@0
|
258 |
Intended Usage : To execute the CDefaultResolver::ListAllL method for the test harness.
|
sl@0
|
259 |
Error Condition : Leaves with an error code.
|
sl@0
|
260 |
@leave KErrNoMemory, (@see CDefaultResolver::ListAllL)
|
sl@0
|
261 |
@since 7.0
|
sl@0
|
262 |
@return None
|
sl@0
|
263 |
@pre CDefaultResolver_ListAllL_Transition is fully constructed.
|
sl@0
|
264 |
@post No change in the CDefaultResolver_ListAllL_Transition apart
|
sl@0
|
265 |
from iDefaultResolver, which may have changed state.
|
sl@0
|
266 |
(@see CDefaultResolver::ListAllL post-condition) for iDefaultResolver's new state.
|
sl@0
|
267 |
*/
|
sl@0
|
268 |
inline void TransitMethodL();
|
sl@0
|
269 |
|
sl@0
|
270 |
/**
|
sl@0
|
271 |
@fn Context() const
|
sl@0
|
272 |
Intended Usage : To provide access to the unit test context cast to the correct type.
|
sl@0
|
273 |
Error Condition : None.
|
sl@0
|
274 |
@since 7.0
|
sl@0
|
275 |
@return The unit test context cast to a CDefaultResolver_UnitTestContext
|
sl@0
|
276 |
@pre iUTContext is a valid CDefaultResolver_UnitTestContext.
|
sl@0
|
277 |
@post No change in the CDefaultResolver_ListAllL_Transition
|
sl@0
|
278 |
*/
|
sl@0
|
279 |
inline CDefaultResolver_UnitTestContext& Context() const;
|
sl@0
|
280 |
}; // CDefaultResolver_ListAllL_Transition
|
sl@0
|
281 |
|
sl@0
|
282 |
// ______________________________________________________________________________
|
sl@0
|
283 |
//
|
sl@0
|
284 |
/**
|
sl@0
|
285 |
@internalComponent
|
sl@0
|
286 |
Comments : Transition test of the CDefaultResolver::Match method.
|
sl@0
|
287 |
*/
|
sl@0
|
288 |
class CDefaultResolver_Match_Transition : public CTransition
|
sl@0
|
289 |
{
|
sl@0
|
290 |
public:
|
sl@0
|
291 |
/**
|
sl@0
|
292 |
@fn CDefaultResolver_Match_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
293 |
TTransitionValidator& aValidator)
|
sl@0
|
294 |
Intended Usage : Standard c'tor method.
|
sl@0
|
295 |
Error Condition : None.
|
sl@0
|
296 |
@since 7.0
|
sl@0
|
297 |
@param aUTContext The context this transition is operating in.
|
sl@0
|
298 |
@param aValidator Used for checking the pre & post conditions of the test object.
|
sl@0
|
299 |
@pre None.
|
sl@0
|
300 |
@post CDefaultResolver_Match_Transition is fully constructed.
|
sl@0
|
301 |
*/
|
sl@0
|
302 |
CDefaultResolver_Match_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
303 |
TTransitionValidator& aValidator);
|
sl@0
|
304 |
/**
|
sl@0
|
305 |
@fn TransitMethodL()
|
sl@0
|
306 |
Intended Usage : To execute the CDefaultResolver::Match method for the test harness.
|
sl@0
|
307 |
Error Condition : Leaves with an error code.
|
sl@0
|
308 |
@leave KErrNoMemory, (@see CDefaultResolver::Match)
|
sl@0
|
309 |
@since 7.0
|
sl@0
|
310 |
@return None
|
sl@0
|
311 |
@pre CDefaultResolver_Match_Transition is fully constructed.
|
sl@0
|
312 |
@post No change in the CDefaultResolver_Match_Transition apart
|
sl@0
|
313 |
from iDefaultResolver, which may have changed state.
|
sl@0
|
314 |
(@see CDefaultResolver::Match post-condition) for iDefaultResolver's new state.
|
sl@0
|
315 |
*/
|
sl@0
|
316 |
inline void TransitMethodL();
|
sl@0
|
317 |
|
sl@0
|
318 |
/**
|
sl@0
|
319 |
@fn Context() const
|
sl@0
|
320 |
Intended Usage : To provide access to the unit test context cast to the correct type.
|
sl@0
|
321 |
Error Condition : None.
|
sl@0
|
322 |
@since 7.0
|
sl@0
|
323 |
@return The unit test context cast to a CDefaultResolver_UnitTestContext
|
sl@0
|
324 |
@pre iUTContext is a valid CDefaultResolver_UnitTestContext.
|
sl@0
|
325 |
@post No change in the CDefaultResolver_Match_Transition
|
sl@0
|
326 |
*/
|
sl@0
|
327 |
inline CDefaultResolver_UnitTestContext& Context() const;
|
sl@0
|
328 |
}; // CDefaultResolver_Match_Transition
|
sl@0
|
329 |
|
sl@0
|
330 |
// ______________________________________________________________________________
|
sl@0
|
331 |
//
|
sl@0
|
332 |
/**
|
sl@0
|
333 |
@internalComponent
|
sl@0
|
334 |
Comments : Transition test of the CDefaultResolver::Resolve method.
|
sl@0
|
335 |
*/
|
sl@0
|
336 |
class CDefaultResolver_Resolve_Transition : public CTransition
|
sl@0
|
337 |
{
|
sl@0
|
338 |
public:
|
sl@0
|
339 |
/**
|
sl@0
|
340 |
@fn CDefaultResolver_Resolve_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
341 |
TTransitionValidator& aValidator)
|
sl@0
|
342 |
Intended Usage : Standard c'tor method.
|
sl@0
|
343 |
Error Condition : None.
|
sl@0
|
344 |
@since 7.0
|
sl@0
|
345 |
@param aUTContext The context this transition is operating in.
|
sl@0
|
346 |
@param aValidator Used for checking the pre & post conditions of the test object.
|
sl@0
|
347 |
@pre None.
|
sl@0
|
348 |
@post CDefaultResolver_Resolve_Transition is fully constructed.
|
sl@0
|
349 |
*/
|
sl@0
|
350 |
CDefaultResolver_Resolve_Transition(CUnitTestContext& aUTContext,
|
sl@0
|
351 |
TTransitionValidator& aValidator);
|
sl@0
|
352 |
/**
|
sl@0
|
353 |
@fn TransitMethodL()
|
sl@0
|
354 |
Intended Usage : To execute the CDefaultResolver::ResolveL method for the test harness.
|
sl@0
|
355 |
Error Condition : Leaves with an error code.
|
sl@0
|
356 |
@leave KErrNoMemory, (@see CDefaultResolver::ResolveL)
|
sl@0
|
357 |
@since 7.0
|
sl@0
|
358 |
@return None
|
sl@0
|
359 |
@pre CDefaultResolver_ResolveL_Transition is fully constructed.
|
sl@0
|
360 |
@post No change in the CDefaultResolver_ResolveL_Transition apart
|
sl@0
|
361 |
from iDefaultResolver, which may have changed state.
|
sl@0
|
362 |
(@see CDefaultResolver::ResolveL post-condition) for iDefaultResolver's new state.
|
sl@0
|
363 |
*/
|
sl@0
|
364 |
inline void TransitMethodL();
|
sl@0
|
365 |
|
sl@0
|
366 |
/**
|
sl@0
|
367 |
@fn Context() const
|
sl@0
|
368 |
Intended Usage : To provide access to the unit test context cast to the correct type.
|
sl@0
|
369 |
Error Condition : None.
|
sl@0
|
370 |
@since 7.0
|
sl@0
|
371 |
@return The unit test context cast to a CDefaultResolver_UnitTestContext
|
sl@0
|
372 |
@pre iUTContext is a valid CDefaultResolver_UnitTestContext.
|
sl@0
|
373 |
@post No change in the CDefaultResolver_ResolveL_Transition
|
sl@0
|
374 |
*/
|
sl@0
|
375 |
inline CDefaultResolver_UnitTestContext& Context() const;
|
sl@0
|
376 |
}; // CDefaultResolver_ResolveL_Transition
|
sl@0
|
377 |
|
sl@0
|
378 |
#include "ResolverTransitions.inl"
|
sl@0
|
379 |
|
sl@0
|
380 |
#endif // __RESOLVERTRANSITIONS_H__
|