os/ossrv/lowlevellibsandfws/pluginfw/Framework/LoadManagerTest/LoadManagerUnitTest.inl
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/LoadManagerTest/LoadManagerUnitTest.inl	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,159 @@
     1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +// The implementation of the inlines for the CLoadManager unit tests.
    1.18 +// 
    1.19 +//
    1.20 +
    1.21 +// ______________________________________________________________________________
    1.22 +//
    1.23 +_LIT(KLoadManagerCreateAndDestroyUnitTest,"CLoadManager_CreateAndDestroy_UnitTest");
    1.24 +
    1.25 +inline TInt CLoadManager_CreateAndDestroy_UnitTest::RunError(TInt aError)
    1.26 +	{
    1.27 +	// The RunL left so chain to the base first and then cleanup
    1.28 +	TInt error = CUnitTest::RunError(aError);	// Chain to base
    1.29 +	delete iUTContext;
    1.30 +	delete iStateAccessor;
    1.31 +	/* delete any validators used */
    1.32 +	delete iCtorValidator;
    1.33 +	delete iDtorValidator;
    1.34 +	return error;
    1.35 +	}
    1.36 +
    1.37 +inline CLoadManager_CreateAndDestroy_UnitTest::~CLoadManager_CreateAndDestroy_UnitTest()
    1.38 +	{
    1.39 +	// Simply delete our test class instance
    1.40 +	delete iUTContext;
    1.41 +	delete iStateAccessor;
    1.42 +	/* delete any validators used */
    1.43 +	delete iCtorValidator;
    1.44 +	delete iDtorValidator;
    1.45 +	}
    1.46 +
    1.47 +inline CLoadManager_CreateAndDestroy_UnitTest::CLoadManager_CreateAndDestroy_UnitTest(CDataLogger& aDataLogger,
    1.48 +																	MUnitTestObserver& aObserver)
    1.49 +: CUnitTest(KLoadManagerCreateAndDestroyUnitTest, aDataLogger, aObserver)
    1.50 +	{
    1.51 +	//Do nothing
    1.52 +	}
    1.53 +
    1.54 +// ______________________________________________________________________________
    1.55 +//
    1.56 +_LIT(KLoadManagerFindInstantiationAndDestroyUnitTest,"CLoadManager_FindInstantiationAndDestroy_UnitTest");
    1.57 +
    1.58 +inline TInt CLoadManager_FindInstantiationAndDestroy_UnitTest::RunError(TInt aError)
    1.59 +	{
    1.60 +	// The RunL left so chain to the base first and then cleanup
    1.61 +	TInt error = CUnitTest::RunError(aError);	// Chain to base
    1.62 +	delete iUTContext;
    1.63 +	delete iStateAccessor;
    1.64 +	// delete any validators used
    1.65 +	delete iCtorValidator;
    1.66 +	delete iInstantiationMethodValidator;
    1.67 +	delete iDestroyThisValidator;
    1.68 +	delete iDtorValidator;
    1.69 +	return error;
    1.70 +	}
    1.71 +
    1.72 +inline CLoadManager_FindInstantiationAndDestroy_UnitTest::~CLoadManager_FindInstantiationAndDestroy_UnitTest()
    1.73 +	{
    1.74 +	// Simply delete our test class instance
    1.75 +	delete iUTContext;
    1.76 +	delete iStateAccessor;
    1.77 +	// delete any validators used
    1.78 +	delete iCtorValidator;
    1.79 +	delete iInstantiationMethodValidator;
    1.80 +	delete iDestroyThisValidator;
    1.81 +	delete iDtorValidator;
    1.82 +	}
    1.83 +
    1.84 +inline CLoadManager_FindInstantiationAndDestroy_UnitTest::CLoadManager_FindInstantiationAndDestroy_UnitTest(CDataLogger& aDataLogger,
    1.85 +																	MUnitTestObserver& aObserver)
    1.86 +: CUnitTest(KLoadManagerFindInstantiationAndDestroyUnitTest, aDataLogger, aObserver)
    1.87 +	{
    1.88 +	//Do nothing
    1.89 +	}
    1.90 +
    1.91 +// ______________________________________________________________________________
    1.92 +//
    1.93 +_LIT(KLoadManagerFindInstantiationFailureUnitTest,"CLoadManager_FindInstantiationFailure_UnitTest");
    1.94 +
    1.95 +inline TInt CLoadManager_FindInstantiationFailure_UnitTest::RunError(TInt aError)
    1.96 +	{
    1.97 +	// The RunL left so chain to the base first and then cleanup
    1.98 +	TInt error = CUnitTest::RunError(aError);	// Chain to base
    1.99 +	delete iUTContext;
   1.100 +	delete iStateAccessor;
   1.101 +	// delete any validators used
   1.102 +	delete iCtorValidator;
   1.103 +	delete iInstantiationMethodValidator;
   1.104 +	delete iDtorValidator;
   1.105 +	return error;
   1.106 +	}
   1.107 +
   1.108 +inline CLoadManager_FindInstantiationFailure_UnitTest::~CLoadManager_FindInstantiationFailure_UnitTest()
   1.109 +	{
   1.110 +	// Simply delete our test class instance
   1.111 +	delete iUTContext;
   1.112 +	delete iStateAccessor;
   1.113 +	// delete any validators used
   1.114 +	delete iCtorValidator;
   1.115 +	delete iInstantiationMethodValidator;
   1.116 +	delete iDtorValidator;
   1.117 +	}
   1.118 +
   1.119 +inline CLoadManager_FindInstantiationFailure_UnitTest::CLoadManager_FindInstantiationFailure_UnitTest(CDataLogger& aDataLogger,
   1.120 +																	MUnitTestObserver& aObserver)
   1.121 +: CUnitTest(KLoadManagerFindInstantiationFailureUnitTest, aDataLogger, aObserver)
   1.122 +	{
   1.123 +	//Do nothing
   1.124 +	}
   1.125 +
   1.126 +// ______________________________________________________________________________
   1.127 +//
   1.128 +_LIT(KLoadManagerDefectFOT56ULPMUnitTest,"CLoadManager_DefectFOT56ULPM_UnitTest");
   1.129 +
   1.130 +inline TInt CLoadManager_DefectFOT56ULPM_UnitTest::RunError(TInt aError)
   1.131 +	{
   1.132 +	// The RunL left so chain to the base first and then cleanup
   1.133 +	TInt error = CUnitTest::RunError(aError);	// Chain to base
   1.134 +	delete iUTContext;
   1.135 +	delete iStateAccessor;
   1.136 +	// delete any validators used
   1.137 +	delete iCtorValidator;
   1.138 +	delete iInstantiationMethodValidator;
   1.139 +	delete iDestroyThisValidator;
   1.140 +	delete iDtorValidator;
   1.141 +	return error;
   1.142 +	}
   1.143 +
   1.144 +inline CLoadManager_DefectFOT56ULPM_UnitTest::~CLoadManager_DefectFOT56ULPM_UnitTest()
   1.145 +	{
   1.146 +	// Simply delete our test class instance
   1.147 +	delete iUTContext;
   1.148 +	delete iStateAccessor;
   1.149 +	// delete any validators used
   1.150 +	delete iCtorValidator;
   1.151 +	delete iInstantiationMethodValidator;
   1.152 +	delete iDestroyThisValidator;
   1.153 +	delete iDtorValidator;
   1.154 +	}
   1.155 +
   1.156 +inline CLoadManager_DefectFOT56ULPM_UnitTest::CLoadManager_DefectFOT56ULPM_UnitTest(CDataLogger& aDataLogger,
   1.157 +																	MUnitTestObserver& aObserver)
   1.158 +: CUnitTest(KLoadManagerDefectFOT56ULPMUnitTest, aDataLogger, aObserver)
   1.159 +	{
   1.160 +	//Do nothing
   1.161 +	}
   1.162 +