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 definitions of the transition classes upon the CDefaultLogOutput class methods.
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#ifndef __DEFAULTLOGOUTPUTTRANSITIONVALIDATION_H__
|
sl@0
|
19 |
#define __DEFAULTLOGOUTPUTTRANSITIONVALIDATION_H__
|
sl@0
|
20 |
|
sl@0
|
21 |
#include "DefaultLogOutputTransitions.h"
|
sl@0
|
22 |
|
sl@0
|
23 |
// ______________________________________________________________________________
|
sl@0
|
24 |
//
|
sl@0
|
25 |
/**
|
sl@0
|
26 |
@internalComponent
|
sl@0
|
27 |
|
sl@0
|
28 |
Comments : Provide all the CtorUnit Test's specific
|
sl@0
|
29 |
validatation for the state of a transition before and after its execution.
|
sl@0
|
30 |
on the CDefaultLogOutput test class for a transition.
|
sl@0
|
31 |
*/
|
sl@0
|
32 |
class TDefaultLogOutput_Ctor_TransitionValidator : public TTransitionValidator
|
sl@0
|
33 |
{
|
sl@0
|
34 |
public:
|
sl@0
|
35 |
/**
|
sl@0
|
36 |
@fn TDefaultLogOutput_Ctor_TransitionValidator(CUnitTestContext& aUTContext)
|
sl@0
|
37 |
Intended Usage :
|
sl@0
|
38 |
@leave KErrNoMemory
|
sl@0
|
39 |
@since 7.0
|
sl@0
|
40 |
@param aUTContext The context within which this transition is executing
|
sl@0
|
41 |
*/
|
sl@0
|
42 |
inline TDefaultLogOutput_Ctor_TransitionValidator(CUnitTestContext& aUTContext);
|
sl@0
|
43 |
|
sl@0
|
44 |
/**
|
sl@0
|
45 |
@fn ValidatePreConditions()
|
sl@0
|
46 |
Intended Usage : Implemented by the developer to check the
|
sl@0
|
47 |
end state of the transition behaviour.
|
sl@0
|
48 |
Error Condition : Invalid pre-conditions
|
sl@0
|
49 |
@since 7.0
|
sl@0
|
50 |
@return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
|
sl@0
|
51 |
@pre TDefaultLogOutput_Ctor_TransitionValidator is fully constructed.
|
sl@0
|
52 |
@post No change to the iUTContext class.
|
sl@0
|
53 |
*/
|
sl@0
|
54 |
virtual inline TBool ValidatePreConditions();
|
sl@0
|
55 |
|
sl@0
|
56 |
/**
|
sl@0
|
57 |
@fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
|
sl@0
|
58 |
Intended Usage : Implemented by the developer to check the
|
sl@0
|
59 |
end state of the transition behaviour.
|
sl@0
|
60 |
When overriding, if the transition calls an asynchronous function
|
sl@0
|
61 |
ValidatePostConditions will be called twice. Firstly, after the
|
sl@0
|
62 |
asynchronous function has been called and, secondly, after the
|
sl@0
|
63 |
asynchronous request has completed. The parameter aAsyncState can
|
sl@0
|
64 |
be used to distinguish between these two cases.
|
sl@0
|
65 |
Error Condition : Invalid post-conditions.
|
sl@0
|
66 |
@since 7.0
|
sl@0
|
67 |
@param aAsyncState EAsyncCalled if the async function has been just been called,
|
sl@0
|
68 |
EAsyncCompleted if the function has completed.
|
sl@0
|
69 |
@return TBool ETrue if the post-conditions were valid, EFalse otherwise.
|
sl@0
|
70 |
@pre TDefaultLogOutput_Ctor_TransitionValidator is fully constructed.
|
sl@0
|
71 |
@post No change to the iUTContext class.
|
sl@0
|
72 |
*/
|
sl@0
|
73 |
virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
|
sl@0
|
74 |
}; // TDefaultLogOutput_Ctor_TransitionValidator
|
sl@0
|
75 |
|
sl@0
|
76 |
// ______________________________________________________________________________
|
sl@0
|
77 |
//
|
sl@0
|
78 |
/**
|
sl@0
|
79 |
@internalComponent
|
sl@0
|
80 |
|
sl@0
|
81 |
Comments : Provide all the DtorUnit Test's specific
|
sl@0
|
82 |
validatation for the state of a transition before and after its execution.
|
sl@0
|
83 |
on the CDefaultLogOutput test class for a transition.
|
sl@0
|
84 |
*/
|
sl@0
|
85 |
class TDefaultLogOutput_Dtor_TransitionValidator : public TTransitionValidator
|
sl@0
|
86 |
{
|
sl@0
|
87 |
public:
|
sl@0
|
88 |
/**
|
sl@0
|
89 |
@fn TDefaultLogOutput_Dtor_TransitionValidator(CUnitTestContext& aUTContext)
|
sl@0
|
90 |
Intended Usage :
|
sl@0
|
91 |
@leave KErrNoMemory
|
sl@0
|
92 |
@since 7.0
|
sl@0
|
93 |
@param aUTContext The context within which this transition is executing
|
sl@0
|
94 |
*/
|
sl@0
|
95 |
inline TDefaultLogOutput_Dtor_TransitionValidator(CUnitTestContext& aUTContext);
|
sl@0
|
96 |
|
sl@0
|
97 |
/**
|
sl@0
|
98 |
@fn ValidatePreConditions()
|
sl@0
|
99 |
Intended Usage : Implemented by the developer to check the
|
sl@0
|
100 |
end state of the transition behaviour.
|
sl@0
|
101 |
Error Condition : Invalid pre-conditions
|
sl@0
|
102 |
@since 7.0
|
sl@0
|
103 |
@return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
|
sl@0
|
104 |
@pre TDefaultLogOutput_Dtor_TransitionValidator is fully constructed.
|
sl@0
|
105 |
@post No change to the iUTContext class.
|
sl@0
|
106 |
*/
|
sl@0
|
107 |
virtual inline TBool ValidatePreConditions();
|
sl@0
|
108 |
|
sl@0
|
109 |
/**
|
sl@0
|
110 |
@fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
|
sl@0
|
111 |
Intended Usage : Implemented by the developer to check the
|
sl@0
|
112 |
end state of the transition behaviour.
|
sl@0
|
113 |
When overriding, if the transition calls an asynchronous function
|
sl@0
|
114 |
ValidatePostConditions will be called twice. Firstly, after the
|
sl@0
|
115 |
asynchronous function has been called and, secondly, after the
|
sl@0
|
116 |
asynchronous request has completed. The parameter aAsyncState can
|
sl@0
|
117 |
be used to distinguish between these two cases.
|
sl@0
|
118 |
Error Condition : Invalid post-conditions.
|
sl@0
|
119 |
@since 7.0
|
sl@0
|
120 |
@param aAsyncState EAsyncCalled if the async function has been just been called,
|
sl@0
|
121 |
EAsyncCompleted if the function has completed.
|
sl@0
|
122 |
@return TBool ETrue if the post-conditions were valid, EFalse otherwise.
|
sl@0
|
123 |
@pre TDefaultLogOutput_Dtor_TransitionValidator is fully constructed.
|
sl@0
|
124 |
@post No change to the iUTContext class.
|
sl@0
|
125 |
*/
|
sl@0
|
126 |
virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
|
sl@0
|
127 |
}; // TDefaultLogOutput_Dtor_TransitionValidator
|
sl@0
|
128 |
|
sl@0
|
129 |
// ______________________________________________________________________________
|
sl@0
|
130 |
//
|
sl@0
|
131 |
/**
|
sl@0
|
132 |
@internalComponent
|
sl@0
|
133 |
|
sl@0
|
134 |
Comments : Provide all the OpenUnit Test's specific
|
sl@0
|
135 |
validatation for the state of a transition before and after its execution.
|
sl@0
|
136 |
on the CDefaultLogOutput test class for a transition.
|
sl@0
|
137 |
*/
|
sl@0
|
138 |
class TDefaultLogOutput_Open_TransitionValidator : public TTransitionValidator
|
sl@0
|
139 |
{
|
sl@0
|
140 |
public:
|
sl@0
|
141 |
/**
|
sl@0
|
142 |
@fn TDefaultLogOutput_Open_TransitionValidator(CUnitTestContext& aUTContext)
|
sl@0
|
143 |
Intended Usage :
|
sl@0
|
144 |
@leave KErrNoMemory
|
sl@0
|
145 |
@since 7.0
|
sl@0
|
146 |
@param aUTContext The context within which this transition is executing
|
sl@0
|
147 |
*/
|
sl@0
|
148 |
inline TDefaultLogOutput_Open_TransitionValidator(CUnitTestContext& aUTContext);
|
sl@0
|
149 |
|
sl@0
|
150 |
/**
|
sl@0
|
151 |
@fn ValidatePreConditions()
|
sl@0
|
152 |
Intended Usage : Implemented by the developer to check the
|
sl@0
|
153 |
end state of the transition behaviour.
|
sl@0
|
154 |
Error Condition : Invalid pre-conditions
|
sl@0
|
155 |
@since 7.0
|
sl@0
|
156 |
@return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
|
sl@0
|
157 |
@pre TDefaultLogOutput_Open_TransitionValidator is fully constructed.
|
sl@0
|
158 |
@post No change to the iUTContext class.
|
sl@0
|
159 |
*/
|
sl@0
|
160 |
virtual inline TBool ValidatePreConditions();
|
sl@0
|
161 |
|
sl@0
|
162 |
/**
|
sl@0
|
163 |
@fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
|
sl@0
|
164 |
Intended Usage : Implemented by the developer to check the
|
sl@0
|
165 |
end state of the transition behaviour.
|
sl@0
|
166 |
When overriding, if the transition calls an asynchronous function
|
sl@0
|
167 |
ValidatePostConditions will be called twice. Firstly, after the
|
sl@0
|
168 |
asynchronous function has been called and, secondly, after the
|
sl@0
|
169 |
asynchronous request has completed. The parameter aAsyncState can
|
sl@0
|
170 |
be used to distinguish between these two cases.
|
sl@0
|
171 |
Error Condition : Invalid post-conditions.
|
sl@0
|
172 |
@since 7.0
|
sl@0
|
173 |
@param aAsyncState EAsyncCalled if the async function has been just been called,
|
sl@0
|
174 |
EAsyncCompleted if the function has completed.
|
sl@0
|
175 |
@return TBool ETrue if the post-conditions were valid, EFalse otherwise.
|
sl@0
|
176 |
@pre TDefaultLogOutput_Open_TransitionValidator is fully constructed.
|
sl@0
|
177 |
@post No change to the iUTContext class.
|
sl@0
|
178 |
*/
|
sl@0
|
179 |
virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
|
sl@0
|
180 |
}; // TDefaultLogOutput_Open_TransitionValidator
|
sl@0
|
181 |
|
sl@0
|
182 |
// ______________________________________________________________________________
|
sl@0
|
183 |
//
|
sl@0
|
184 |
/**
|
sl@0
|
185 |
@internalComponent
|
sl@0
|
186 |
|
sl@0
|
187 |
Comments : Provide all the CloseUnit Test's specific
|
sl@0
|
188 |
validatation for the state of a transition before and after its execution.
|
sl@0
|
189 |
on the CDefaultLogOutput test class for a transition.
|
sl@0
|
190 |
*/
|
sl@0
|
191 |
class TDefaultLogOutput_Close_TransitionValidator : public TTransitionValidator
|
sl@0
|
192 |
{
|
sl@0
|
193 |
public:
|
sl@0
|
194 |
/**
|
sl@0
|
195 |
@fn TDefaultLogOutput_Close_TransitionValidator(CUnitTestContext& aUTContext)
|
sl@0
|
196 |
Intended Usage :
|
sl@0
|
197 |
@leave KErrNoMemory
|
sl@0
|
198 |
@since 7.0
|
sl@0
|
199 |
@param aUTContext The context within which this transition is executing
|
sl@0
|
200 |
*/
|
sl@0
|
201 |
inline TDefaultLogOutput_Close_TransitionValidator(CUnitTestContext& aUTContext);
|
sl@0
|
202 |
|
sl@0
|
203 |
/**
|
sl@0
|
204 |
@fn ValidatePreConditions()
|
sl@0
|
205 |
Intended Usage : Implemented by the developer to check the
|
sl@0
|
206 |
end state of the transition behaviour.
|
sl@0
|
207 |
Error Condition : Invalid pre-conditions
|
sl@0
|
208 |
@since 7.0
|
sl@0
|
209 |
@return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
|
sl@0
|
210 |
@pre TDefaultLogOutput_Close_TransitionValidator is fully constructed.
|
sl@0
|
211 |
@post No change to the iUTContext class.
|
sl@0
|
212 |
*/
|
sl@0
|
213 |
virtual inline TBool ValidatePreConditions();
|
sl@0
|
214 |
|
sl@0
|
215 |
/**
|
sl@0
|
216 |
@fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
|
sl@0
|
217 |
Intended Usage : Implemented by the developer to check the
|
sl@0
|
218 |
end state of the transition behaviour.
|
sl@0
|
219 |
When overriding, if the transition calls an asynchronous function
|
sl@0
|
220 |
ValidatePostConditions will be called twice. Firstly, after the
|
sl@0
|
221 |
asynchronous function has been called and, secondly, after the
|
sl@0
|
222 |
asynchronous request has completed. The parameter aAsyncState can
|
sl@0
|
223 |
be used to distinguish between these two cases.
|
sl@0
|
224 |
Error Condition : Invalid post-conditions.
|
sl@0
|
225 |
@since 7.0
|
sl@0
|
226 |
@param aAsyncState EAsyncCalled if the async function has been just been called,
|
sl@0
|
227 |
EAsyncCompleted if the function has completed.
|
sl@0
|
228 |
@return TBool ETrue if the post-conditions were valid, EFalse otherwise.
|
sl@0
|
229 |
@pre TDefaultLogOutput_Close_TransitionValidator is fully constructed.
|
sl@0
|
230 |
@post No change to the iUTContext class.
|
sl@0
|
231 |
*/
|
sl@0
|
232 |
virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
|
sl@0
|
233 |
}; // TDefaultLogOutput_Close_TransitionValidator
|
sl@0
|
234 |
|
sl@0
|
235 |
// ______________________________________________________________________________
|
sl@0
|
236 |
//
|
sl@0
|
237 |
/**
|
sl@0
|
238 |
@internalComponent
|
sl@0
|
239 |
|
sl@0
|
240 |
Comments : Provide all the WriteUnit Test's specific
|
sl@0
|
241 |
validatation for the state of a transition before and after its execution.
|
sl@0
|
242 |
on the CDefaultLogOutput test class for a transition.
|
sl@0
|
243 |
*/
|
sl@0
|
244 |
class TDefaultLogOutput_Write_TransitionValidator : public TTransitionValidator
|
sl@0
|
245 |
{
|
sl@0
|
246 |
public:
|
sl@0
|
247 |
/**
|
sl@0
|
248 |
@fn TDefaultLogOutput_Write_TransitionValidator(CUnitTestContext& aUTContext)
|
sl@0
|
249 |
Intended Usage :
|
sl@0
|
250 |
@leave KErrNoMemory
|
sl@0
|
251 |
@since 7.0
|
sl@0
|
252 |
@param aUTContext The context within which this transition is executing
|
sl@0
|
253 |
*/
|
sl@0
|
254 |
inline TDefaultLogOutput_Write_TransitionValidator(CUnitTestContext& aUTContext);
|
sl@0
|
255 |
|
sl@0
|
256 |
/**
|
sl@0
|
257 |
@fn ValidatePreConditions()
|
sl@0
|
258 |
Intended Usage : Implemented by the developer to check the
|
sl@0
|
259 |
end state of the transition behaviour.
|
sl@0
|
260 |
Error Condition : Invalid pre-conditions
|
sl@0
|
261 |
@since 7.0
|
sl@0
|
262 |
@return TBool ETrue if the pre-conditions were valid, EFalse otherwise.
|
sl@0
|
263 |
@pre TDefaultLogOutput_Write_TransitionValidator is fully constructed.
|
sl@0
|
264 |
@post No change to the iUTContext class.
|
sl@0
|
265 |
*/
|
sl@0
|
266 |
virtual inline TBool ValidatePreConditions();
|
sl@0
|
267 |
|
sl@0
|
268 |
/**
|
sl@0
|
269 |
@fn ValidatePostConditions(TTestBedAsyncState aAsyncState)
|
sl@0
|
270 |
Intended Usage : Implemented by the developer to check the
|
sl@0
|
271 |
end state of the transition behaviour.
|
sl@0
|
272 |
When overriding, if the transition calls an asynchronous function
|
sl@0
|
273 |
ValidatePostConditions will be called twice. Firstly, after the
|
sl@0
|
274 |
asynchronous function has been called and, secondly, after the
|
sl@0
|
275 |
asynchronous request has completed. The parameter aAsyncState can
|
sl@0
|
276 |
be used to distinguish between these two cases.
|
sl@0
|
277 |
Error Condition : Invalid post-conditions.
|
sl@0
|
278 |
@since 7.0
|
sl@0
|
279 |
@param aAsyncState EAsyncCalled if the async function has been just been called,
|
sl@0
|
280 |
EAsyncCompleted if the function has completed.
|
sl@0
|
281 |
@return TBool ETrue if the post-conditions were valid, EFalse otherwise.
|
sl@0
|
282 |
@pre TDefaultLogOutput_Write_TransitionValidator is fully constructed.
|
sl@0
|
283 |
@post No change to the iUTContext class.
|
sl@0
|
284 |
*/
|
sl@0
|
285 |
virtual inline TBool ValidatePostConditions(TTestBedAsyncState aAsyncState);
|
sl@0
|
286 |
}; // TDefaultLogOutput_Write_TransitionValidator
|
sl@0
|
287 |
|
sl@0
|
288 |
|
sl@0
|
289 |
#include "DefaultLogOutputTransitionValidation.inl"
|
sl@0
|
290 |
|
sl@0
|
291 |
#endif // __DEFAULTLOGOUTPUTTRANSITIONVALIDATION_H__
|
sl@0
|
292 |
|