Update contrib.
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // This file contains the definition of the
15 // class CAllTransitionsUnitTest
21 #include "TestUtilities.h" // For __FILE__LINE__
22 #include "Interface.h"
23 #include <test_bed/datalogger.h>
25 #include "SuicideUnitTests.h"
26 #include "SuicideTransitions.h"
27 #include "SuicideTransitionValidation.h"
29 #include "TlsData.h" // For GlobalData
31 // ______________________________________________________________________________
33 _LIT(KInterfaceCreateAndDestroyUnitTest,"CSuicideInterfaceCreateAndDestroyUnitTest");
35 CSuicideInterfaceCreateAndDestroyUnitTest* CSuicideInterfaceCreateAndDestroyUnitTest::NewL(CDataLogger& aDataLogger,
36 MUnitTestObserver& aObserver)
38 CSuicideInterfaceCreateAndDestroyUnitTest* self =
39 new(ELeave) CSuicideInterfaceCreateAndDestroyUnitTest(aDataLogger,
41 CleanupStack::PushL(self);
42 // Chain to the base which calls the ConstructL
48 TInt CSuicideInterfaceCreateAndDestroyUnitTest::RunError(TInt aError)
50 // The RunL left so chain to the base first and then cleanup
51 TInt error = CUnitTest::RunError(aError); // Chain to base
54 delete iStateAccessor;
55 iStateAccessor = NULL;
56 delete iCtorValidator;
57 delete iDtorValidator;
65 CSuicideInterfaceCreateAndDestroyUnitTest::~CSuicideInterfaceCreateAndDestroyUnitTest()
67 // Simply delete our test class instance
69 delete iStateAccessor;
70 delete iCtorValidator;
71 delete iDtorValidator;
75 CSuicideInterfaceCreateAndDestroyUnitTest::CSuicideInterfaceCreateAndDestroyUnitTest(CDataLogger& aDataLogger,
76 MUnitTestObserver& aObserver)
77 : CUnitTest(KInterfaceCreateAndDestroyUnitTest, aDataLogger, aObserver)
82 // Now the Individual transitions need to be added.
83 void CSuicideInterfaceCreateAndDestroyUnitTest::ConstructL()
85 // Perform the base class initialization
88 // Create the Unit test state accessor
89 iStateAccessor = new(ELeave) TSuicideInterface_StateAccessor();
92 iUTContext = new(ELeave) CSuicideInterface_UnitTestContext(iDataLogger, *iStateAccessor, *this);
94 // Add the Transitions in the order they are to run
95 // C'tor first, D'tor last...
96 iCtorValidator = new(ELeave) TSuicideInterface_Ctor_TransitionValidator(*iUTContext);
97 AddTransitionL(new(ELeave)CSuicideInterfaceNewLTransition(*iUTContext,*iCtorValidator));
99 iDtorValidator = new(ELeave) TSuicideInterface_Dtor_TransitionValidator(*iUTContext);
100 AddTransitionL(new(ELeave)CSuicideInterfaceDtorTransition(*iUTContext,*iDtorValidator));
102 // ______________________________________________________________________________
104 _LIT(KInterfaceFireAndForgetUnitTest,"CSuicideInterfaceFireAndForgetUnitTest");
106 CSuicideInterfaceFireAndForgetUnitTest* CSuicideInterfaceFireAndForgetUnitTest::NewL(CDataLogger& aDataLogger,
107 MUnitTestObserver& aObserver)
109 CSuicideInterfaceFireAndForgetUnitTest* self = new(ELeave) CSuicideInterfaceFireAndForgetUnitTest(aDataLogger, aObserver);
110 CleanupStack::PushL(self);
111 // Chain to the base which calls the ConstructL
117 TInt CSuicideInterfaceFireAndForgetUnitTest::RunError(TInt aError)
119 TInt error = CUnitTest::RunError(aError); // Chain to base
122 delete iStateAccessor;
123 iStateAccessor = NULL;
124 delete iCtorValidator;
125 iCtorValidator = NULL;
126 delete iFireAndForgetValidator;
127 iFireAndForgetValidator = NULL;
132 CSuicideInterfaceFireAndForgetUnitTest::~CSuicideInterfaceFireAndForgetUnitTest()
135 delete iStateAccessor;
136 delete iCtorValidator;
137 delete iFireAndForgetValidator;
141 CSuicideInterfaceFireAndForgetUnitTest::CSuicideInterfaceFireAndForgetUnitTest(CDataLogger& aDataLogger, MUnitTestObserver& aObserver)
142 : CUnitTest(KInterfaceFireAndForgetUnitTest, aDataLogger, aObserver)
147 // Now the Individual transitions need to be added.
148 void CSuicideInterfaceFireAndForgetUnitTest::ConstructL()
150 UnitTestConstructL();
152 // Create the Unit test state accessor
153 iStateAccessor = new(ELeave) TSuicideInterface_StateAccessor();
155 iUTContext = new(ELeave) CSuicideInterface_UnitTestContext(iDataLogger, *iStateAccessor, *this);
156 // Add the Transitions in the order they are to run
157 // C'tor first, D'tor last...
158 iCtorValidator = new(ELeave) TSuicideInterface_Ctor_TransitionValidator(*iUTContext);
159 AddTransitionL(new(ELeave)CSuicideInterfaceNewLTransition(*iUTContext,*iCtorValidator));
161 iFireAndForgetValidator = new(ELeave) TSuicideInterface_FireAndForget_TransitionValidator(*iUTContext);
162 AddTransitionL(new(ELeave)CSuicideInterfaceFireAndForgetTransition(*iUTContext, *iFireAndForgetValidator));