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 validation classes upon the CComponentInfo class methods.
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
// ______________________________________________________________________________
|
sl@0
|
19 |
//
|
sl@0
|
20 |
inline TComponentInfo_Ctor_TransitionValidator::TComponentInfo_Ctor_TransitionValidator(CUnitTestContext& aUTContext)
|
sl@0
|
21 |
:TTransitionValidator(aUTContext)
|
sl@0
|
22 |
{
|
sl@0
|
23 |
// Do nothing
|
sl@0
|
24 |
}
|
sl@0
|
25 |
|
sl@0
|
26 |
inline TBool TComponentInfo_Ctor_TransitionValidator::ValidatePreConditions()
|
sl@0
|
27 |
{
|
sl@0
|
28 |
return ETrue;
|
sl@0
|
29 |
}
|
sl@0
|
30 |
|
sl@0
|
31 |
inline TBool TComponentInfo_Ctor_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
|
sl@0
|
32 |
{
|
sl@0
|
33 |
if((reinterpret_cast <CComponentInfo_UnitTestContext&> (iUTContext)).iEntryFunc != (reinterpret_cast <CComponentInfo_UnitTestContext&> (iUTContext)).iEntryFuncPostCheck)
|
sl@0
|
34 |
return EFalse;
|
sl@0
|
35 |
return ETrue;
|
sl@0
|
36 |
}
|
sl@0
|
37 |
|
sl@0
|
38 |
// ______________________________________________________________________________
|
sl@0
|
39 |
//
|
sl@0
|
40 |
inline TComponentInfo_Dtor_TransitionValidator::TComponentInfo_Dtor_TransitionValidator(CUnitTestContext& aUTContext)
|
sl@0
|
41 |
:TTransitionValidator(aUTContext)
|
sl@0
|
42 |
{
|
sl@0
|
43 |
// Do nothing
|
sl@0
|
44 |
}
|
sl@0
|
45 |
|
sl@0
|
46 |
inline TBool TComponentInfo_Dtor_TransitionValidator::ValidatePreConditions()
|
sl@0
|
47 |
{
|
sl@0
|
48 |
if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentInfo_UnitTestContext&,iUTContext).iComponentInfo))
|
sl@0
|
49 |
return EFalse;
|
sl@0
|
50 |
return ETrue;
|
sl@0
|
51 |
}
|
sl@0
|
52 |
|
sl@0
|
53 |
inline TBool TComponentInfo_Dtor_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
|
sl@0
|
54 |
{
|
sl@0
|
55 |
return ETrue;
|
sl@0
|
56 |
}
|
sl@0
|
57 |
|
sl@0
|
58 |
// ______________________________________________________________________________
|
sl@0
|
59 |
//
|
sl@0
|
60 |
inline TComponentInfo_Entry_TransitionValidator::TComponentInfo_Entry_TransitionValidator(CUnitTestContext& aUTContext)
|
sl@0
|
61 |
:TTransitionValidator(aUTContext)
|
sl@0
|
62 |
{
|
sl@0
|
63 |
// Do nothing
|
sl@0
|
64 |
}
|
sl@0
|
65 |
|
sl@0
|
66 |
inline TBool TComponentInfo_Entry_TransitionValidator::ValidatePreConditions()
|
sl@0
|
67 |
{
|
sl@0
|
68 |
if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentInfo_UnitTestContext&,iUTContext).iComponentInfo))
|
sl@0
|
69 |
return EFalse;
|
sl@0
|
70 |
return ETrue;
|
sl@0
|
71 |
}
|
sl@0
|
72 |
|
sl@0
|
73 |
inline TBool TComponentInfo_Entry_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
|
sl@0
|
74 |
{
|
sl@0
|
75 |
if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentInfo_UnitTestContext&,iUTContext).iComponentInfo))
|
sl@0
|
76 |
return EFalse;
|
sl@0
|
77 |
|
sl@0
|
78 |
if(REINTERPRET_CAST(CComponentInfo_UnitTestContext&,iUTContext).iEntryFunc != REINTERPRET_CAST(CComponentInfo_UnitTestContext&,iUTContext).iEntryFuncPostCheck)
|
sl@0
|
79 |
{
|
sl@0
|
80 |
_LIT(KComponentInfoValidatePostConditions, "***** TComponentInfo_Entry_TransitionValidator::ValidatePostConditions Failed *****");
|
sl@0
|
81 |
iUTContext.DataLogger().LogInformation(KComponentInfoValidatePostConditions);
|
sl@0
|
82 |
return EFalse;
|
sl@0
|
83 |
}
|
sl@0
|
84 |
return ETrue;
|
sl@0
|
85 |
}
|
sl@0
|
86 |
|
sl@0
|
87 |
// ______________________________________________________________________________
|
sl@0
|
88 |
//
|
sl@0
|
89 |
inline TComponentInfo_UnitTestsInfo_TransitionValidator::TComponentInfo_UnitTestsInfo_TransitionValidator(CUnitTestContext& aUTContext)
|
sl@0
|
90 |
:TTransitionValidator(aUTContext)
|
sl@0
|
91 |
{
|
sl@0
|
92 |
// Do nothing
|
sl@0
|
93 |
}
|
sl@0
|
94 |
|
sl@0
|
95 |
inline TBool TComponentInfo_UnitTestsInfo_TransitionValidator::ValidatePreConditions()
|
sl@0
|
96 |
{
|
sl@0
|
97 |
if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentInfo_UnitTestContext&,iUTContext).iComponentInfo))
|
sl@0
|
98 |
return EFalse;
|
sl@0
|
99 |
return ETrue;
|
sl@0
|
100 |
}
|
sl@0
|
101 |
|
sl@0
|
102 |
inline TBool TComponentInfo_UnitTestsInfo_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
|
sl@0
|
103 |
{
|
sl@0
|
104 |
if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentInfo_UnitTestContext&,iUTContext).iComponentInfo))
|
sl@0
|
105 |
return EFalse;
|
sl@0
|
106 |
|
sl@0
|
107 |
if(REINTERPRET_CAST(CComponentInfo_UnitTestContext&,iUTContext).iTestInfoArray != REINTERPRET_CAST(CComponentInfo_UnitTestContext&,iUTContext).iTestInfoArrayPostCheck)
|
sl@0
|
108 |
{
|
sl@0
|
109 |
_LIT(KComponentInfoUTValidatePostConditions, "***** TComponentInfo_UnitTestsInfo_TransitionValidator::ValidatePostConditions Failed *****");
|
sl@0
|
110 |
iUTContext.DataLogger().LogInformation(KComponentInfoUTValidatePostConditions);
|
sl@0
|
111 |
return EFalse;
|
sl@0
|
112 |
}
|
sl@0
|
113 |
return ETrue;
|
sl@0
|
114 |
}
|