os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/ComponentTesterTest/ComponentTesterTransitionValidation.inl
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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 CComponentTester class methods.
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
// ______________________________________________________________________________
sl@0
    19
//
sl@0
    20
inline TComponentTester_Ctor_TransitionValidator::TComponentTester_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 TComponentTester_Ctor_TransitionValidator::ValidatePreConditions()
sl@0
    27
	{
sl@0
    28
	return ETrue;
sl@0
    29
	}
sl@0
    30
sl@0
    31
inline TBool TComponentTester_Ctor_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
sl@0
    32
	{
sl@0
    33
	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
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 TComponentTester_Dtor_TransitionValidator::TComponentTester_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 TComponentTester_Dtor_TransitionValidator::ValidatePreConditions()
sl@0
    47
	{
sl@0
    48
	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
sl@0
    49
		return EFalse;
sl@0
    50
	return ETrue;
sl@0
    51
	}
sl@0
    52
sl@0
    53
inline TBool TComponentTester_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 TComponentTester_TransitionSets_TransitionValidator::TComponentTester_TransitionSets_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 TComponentTester_TransitionSets_TransitionValidator::ValidatePreConditions()
sl@0
    67
	{
sl@0
    68
	// Implement the correct pre-condition test for this unit test transition.
sl@0
    69
//#pragma message( __FILE__LINE__ "TO DO : Implement the correct pre-condition test for this unit test transition.")
sl@0
    70
	// For a c'tor this should be empty.
sl@0
    71
	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
sl@0
    72
		return EFalse;
sl@0
    73
	return ETrue;
sl@0
    74
	}
sl@0
    75
sl@0
    76
inline TBool TComponentTester_TransitionSets_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
sl@0
    77
	{
sl@0
    78
	// Implement the correct post-condition test for this unit test transition.
sl@0
    79
//#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
sl@0
    80
	// For a d'tor this should be empty.
sl@0
    81
	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
sl@0
    82
		return EFalse;
sl@0
    83
	return ETrue;
sl@0
    84
	}
sl@0
    85
sl@0
    86
// ______________________________________________________________________________
sl@0
    87
//
sl@0
    88
inline TComponentTester_AddUnitTest_TransitionValidator::TComponentTester_AddUnitTest_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
    89
:TTransitionValidator(aUTContext)
sl@0
    90
	{
sl@0
    91
	// Do nothing
sl@0
    92
	}
sl@0
    93
sl@0
    94
inline TBool TComponentTester_AddUnitTest_TransitionValidator::ValidatePreConditions()
sl@0
    95
	{
sl@0
    96
	// Implement the correct pre-condition test for this unit test transition.
sl@0
    97
//#pragma message( __FILE__LINE__ "TO DO : Implement the correct pre-condition test for this unit test transition.")
sl@0
    98
	// For a c'tor this should be empty.
sl@0
    99
	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
sl@0
   100
		return EFalse;
sl@0
   101
	return ETrue;
sl@0
   102
	}
sl@0
   103
sl@0
   104
inline TBool TComponentTester_AddUnitTest_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
sl@0
   105
	{
sl@0
   106
	// Implement the correct post-condition test for this unit test transition.
sl@0
   107
//#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
sl@0
   108
	// For a d'tor this should be empty.
sl@0
   109
	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
sl@0
   110
		return EFalse;
sl@0
   111
	return ETrue;
sl@0
   112
	}
sl@0
   113
sl@0
   114
// ______________________________________________________________________________
sl@0
   115
//
sl@0
   116
inline TComponentTester_AddParamUnitTest_TransitionValidator::TComponentTester_AddParamUnitTest_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   117
:TTransitionValidator(aUTContext)
sl@0
   118
	{
sl@0
   119
	// Do nothing
sl@0
   120
	}
sl@0
   121
sl@0
   122
inline TBool TComponentTester_AddParamUnitTest_TransitionValidator::ValidatePreConditions()
sl@0
   123
	{
sl@0
   124
	// Implement the correct pre-condition test for this unit test transition.
sl@0
   125
//#pragma message( __FILE__LINE__ "TO DO : Implement the correct pre-condition test for this unit test transition.")
sl@0
   126
	// For a c'tor this should be empty.
sl@0
   127
	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
sl@0
   128
		return EFalse;
sl@0
   129
	return ETrue;
sl@0
   130
	}
sl@0
   131
sl@0
   132
inline TBool TComponentTester_AddParamUnitTest_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
sl@0
   133
	{
sl@0
   134
	// Implement the correct post-condition test for this unit test transition.
sl@0
   135
//#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
sl@0
   136
	// For a d'tor this should be empty.
sl@0
   137
	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
sl@0
   138
		return EFalse;
sl@0
   139
	return ETrue;
sl@0
   140
	}
sl@0
   141
sl@0
   142
// ______________________________________________________________________________
sl@0
   143
//
sl@0
   144
inline TComponentTester_TestComponent_TransitionValidator::TComponentTester_TestComponent_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   145
:TTransitionValidator(aUTContext)
sl@0
   146
	{
sl@0
   147
	// Do nothing
sl@0
   148
	}
sl@0
   149
sl@0
   150
inline TBool TComponentTester_TestComponent_TransitionValidator::ValidatePreConditions()
sl@0
   151
	{
sl@0
   152
	// Implement the correct pre-condition test for this unit test transition.
sl@0
   153
//#pragma message( __FILE__LINE__ "TO DO : Implement the correct pre-condition test for this unit test transition.")
sl@0
   154
	// For a c'tor this should be empty.
sl@0
   155
	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
sl@0
   156
		return EFalse;
sl@0
   157
	return ETrue;
sl@0
   158
	}
sl@0
   159
sl@0
   160
inline TBool TComponentTester_TestComponent_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
sl@0
   161
	{
sl@0
   162
	// Implement the correct post-condition test for this unit test transition.
sl@0
   163
//#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
sl@0
   164
	// For a d'tor this should be empty.
sl@0
   165
	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
sl@0
   166
		return EFalse;
sl@0
   167
	return ETrue;
sl@0
   168
	}
sl@0
   169
sl@0
   170
// ______________________________________________________________________________
sl@0
   171
//
sl@0
   172
inline TComponentTester_Run_TransitionValidator::TComponentTester_Run_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   173
:TTransitionValidator(aUTContext)
sl@0
   174
	{
sl@0
   175
	// Do nothing
sl@0
   176
	}
sl@0
   177
sl@0
   178
inline TBool TComponentTester_Run_TransitionValidator::ValidatePreConditions()
sl@0
   179
	{
sl@0
   180
	// Implement the correct pre-condition test for this unit test transition.
sl@0
   181
//#pragma message( __FILE__LINE__ "TO DO : Implement the correct pre-condition test for this unit test transition.")
sl@0
   182
	// For a c'tor this should be empty.
sl@0
   183
	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
sl@0
   184
		return EFalse;
sl@0
   185
	return ETrue;
sl@0
   186
	}
sl@0
   187
sl@0
   188
inline TBool TComponentTester_Run_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
sl@0
   189
	{
sl@0
   190
	// Implement the correct post-condition test for this unit test transition.
sl@0
   191
//#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
sl@0
   192
	// For a d'tor this should be empty.
sl@0
   193
	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
sl@0
   194
		return EFalse;
sl@0
   195
	return ETrue;
sl@0
   196
	}
sl@0
   197
sl@0
   198
// ______________________________________________________________________________
sl@0
   199
//
sl@0
   200
inline TComponentTester_Complete_TransitionValidator::TComponentTester_Complete_TransitionValidator(CUnitTestContext& aUTContext)
sl@0
   201
:TTransitionValidator(aUTContext)
sl@0
   202
	{
sl@0
   203
	// Do nothing
sl@0
   204
	}
sl@0
   205
sl@0
   206
inline TBool TComponentTester_Complete_TransitionValidator::ValidatePreConditions()
sl@0
   207
	{
sl@0
   208
	// Implement the correct pre-condition test for this unit test transition.
sl@0
   209
//#pragma message( __FILE__LINE__ "TO DO : Implement the correct pre-condition test for this unit test transition.")
sl@0
   210
	// For a c'tor this should be empty.
sl@0
   211
	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
sl@0
   212
		return EFalse;
sl@0
   213
	return ETrue;
sl@0
   214
	}
sl@0
   215
sl@0
   216
inline TBool TComponentTester_Complete_TransitionValidator::ValidatePostConditions(TTestBedAsyncState /* aAsyncState */)
sl@0
   217
	{
sl@0
   218
	// Implement the correct post-condition test for this unit test transition.
sl@0
   219
//#pragma message( __FILE__LINE__ "TO DO : Implement the correct post-condition test for this unit test transition.")
sl@0
   220
	// For a d'tor this should be empty.
sl@0
   221
	if(iUTContext.StateAccessor().InvariantTest(REINTERPRET_CAST(CComponentTester_UnitTestContext&,iUTContext).iComponentTester))
sl@0
   222
		return EFalse;
sl@0
   223
	return ETrue;
sl@0
   224
	}