sl@0: // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // This file contains the definition of the sl@0: // class CAllTransitionsUnitTest sl@0: // sl@0: // sl@0: sl@0: #include sl@0: sl@0: #include "TestUtilities.h" // For __FILE__LINE__ sl@0: #include "Interface.h" sl@0: #include sl@0: sl@0: #include "SuicideUnitTests.h" sl@0: #include "SuicideTransitions.h" sl@0: #include "SuicideTransitionValidation.h" sl@0: sl@0: #include "TlsData.h" // For GlobalData sl@0: sl@0: // ______________________________________________________________________________ sl@0: // sl@0: _LIT(KInterfaceCreateAndDestroyUnitTest,"CSuicideInterfaceCreateAndDestroyUnitTest"); sl@0: sl@0: CSuicideInterfaceCreateAndDestroyUnitTest* CSuicideInterfaceCreateAndDestroyUnitTest::NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: { sl@0: CSuicideInterfaceCreateAndDestroyUnitTest* self = sl@0: new(ELeave) CSuicideInterfaceCreateAndDestroyUnitTest(aDataLogger, sl@0: aObserver); sl@0: CleanupStack::PushL(self); sl@0: // Chain to the base which calls the ConstructL sl@0: self->ConstructL(); sl@0: CleanupStack::Pop(); sl@0: return self; sl@0: } sl@0: sl@0: TInt CSuicideInterfaceCreateAndDestroyUnitTest::RunError(TInt aError) sl@0: { sl@0: // The RunL left so chain to the base first and then cleanup sl@0: TInt error = CUnitTest::RunError(aError); // Chain to base sl@0: delete iUTContext; sl@0: iUTContext = NULL; sl@0: delete iStateAccessor; sl@0: iStateAccessor = NULL; sl@0: delete iCtorValidator; sl@0: delete iDtorValidator; sl@0: sl@0: iCtorValidator = 0; sl@0: iDtorValidator = 0; sl@0: sl@0: return error; sl@0: } sl@0: sl@0: CSuicideInterfaceCreateAndDestroyUnitTest::~CSuicideInterfaceCreateAndDestroyUnitTest() sl@0: { sl@0: // Simply delete our test class instance sl@0: delete iUTContext; sl@0: delete iStateAccessor; sl@0: delete iCtorValidator; sl@0: delete iDtorValidator; sl@0: sl@0: } sl@0: sl@0: CSuicideInterfaceCreateAndDestroyUnitTest::CSuicideInterfaceCreateAndDestroyUnitTest(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: : CUnitTest(KInterfaceCreateAndDestroyUnitTest, aDataLogger, aObserver) sl@0: { sl@0: //Do nothing sl@0: } sl@0: sl@0: // Now the Individual transitions need to be added. sl@0: void CSuicideInterfaceCreateAndDestroyUnitTest::ConstructL() sl@0: { sl@0: // Perform the base class initialization sl@0: UnitTestConstructL(); sl@0: sl@0: // Create the Unit test state accessor sl@0: iStateAccessor = new(ELeave) TSuicideInterface_StateAccessor(); sl@0: sl@0: // context sl@0: iUTContext = new(ELeave) CSuicideInterface_UnitTestContext(iDataLogger, *iStateAccessor, *this); sl@0: sl@0: // Add the Transitions in the order they are to run sl@0: // C'tor first, D'tor last... sl@0: iCtorValidator = new(ELeave) TSuicideInterface_Ctor_TransitionValidator(*iUTContext); sl@0: AddTransitionL(new(ELeave)CSuicideInterfaceNewLTransition(*iUTContext,*iCtorValidator)); sl@0: sl@0: iDtorValidator = new(ELeave) TSuicideInterface_Dtor_TransitionValidator(*iUTContext); sl@0: AddTransitionL(new(ELeave)CSuicideInterfaceDtorTransition(*iUTContext,*iDtorValidator)); sl@0: } sl@0: // ______________________________________________________________________________ sl@0: // sl@0: _LIT(KInterfaceFireAndForgetUnitTest,"CSuicideInterfaceFireAndForgetUnitTest"); sl@0: sl@0: CSuicideInterfaceFireAndForgetUnitTest* CSuicideInterfaceFireAndForgetUnitTest::NewL(CDataLogger& aDataLogger, sl@0: MUnitTestObserver& aObserver) sl@0: { sl@0: CSuicideInterfaceFireAndForgetUnitTest* self = new(ELeave) CSuicideInterfaceFireAndForgetUnitTest(aDataLogger, aObserver); sl@0: CleanupStack::PushL(self); sl@0: // Chain to the base which calls the ConstructL sl@0: self->ConstructL(); sl@0: CleanupStack::Pop(); sl@0: return self; sl@0: } sl@0: sl@0: TInt CSuicideInterfaceFireAndForgetUnitTest::RunError(TInt aError) sl@0: { sl@0: TInt error = CUnitTest::RunError(aError); // Chain to base sl@0: delete iUTContext; sl@0: iUTContext = NULL; sl@0: delete iStateAccessor; sl@0: iStateAccessor = NULL; sl@0: delete iCtorValidator; sl@0: iCtorValidator = NULL; sl@0: delete iFireAndForgetValidator; sl@0: iFireAndForgetValidator = NULL; sl@0: sl@0: return error; sl@0: } sl@0: sl@0: CSuicideInterfaceFireAndForgetUnitTest::~CSuicideInterfaceFireAndForgetUnitTest() sl@0: { sl@0: delete iUTContext; sl@0: delete iStateAccessor; sl@0: delete iCtorValidator; sl@0: delete iFireAndForgetValidator; sl@0: sl@0: } sl@0: sl@0: CSuicideInterfaceFireAndForgetUnitTest::CSuicideInterfaceFireAndForgetUnitTest(CDataLogger& aDataLogger, MUnitTestObserver& aObserver) sl@0: : CUnitTest(KInterfaceFireAndForgetUnitTest, aDataLogger, aObserver) sl@0: { sl@0: //Do nothing sl@0: } sl@0: sl@0: // Now the Individual transitions need to be added. sl@0: void CSuicideInterfaceFireAndForgetUnitTest::ConstructL() sl@0: { sl@0: UnitTestConstructL(); sl@0: sl@0: // Create the Unit test state accessor sl@0: iStateAccessor = new(ELeave) TSuicideInterface_StateAccessor(); sl@0: // context sl@0: iUTContext = new(ELeave) CSuicideInterface_UnitTestContext(iDataLogger, *iStateAccessor, *this); sl@0: // Add the Transitions in the order they are to run sl@0: // C'tor first, D'tor last... sl@0: iCtorValidator = new(ELeave) TSuicideInterface_Ctor_TransitionValidator(*iUTContext); sl@0: AddTransitionL(new(ELeave)CSuicideInterfaceNewLTransition(*iUTContext,*iCtorValidator)); sl@0: sl@0: iFireAndForgetValidator = new(ELeave) TSuicideInterface_FireAndForget_TransitionValidator(*iUTContext); sl@0: AddTransitionL(new(ELeave)CSuicideInterfaceFireAndForgetTransition(*iUTContext, *iFireAndForgetValidator)); sl@0: } sl@0: