First public contribution.
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.
16 #include "ComponentInfo.h"
19 CComponentInfo::CComponentInfo()
25 CComponentInfo::~CComponentInfo()
27 iComponentTesterGlobalCreationFuncLC = NULL;
28 // We took ownership of these objects at construction, therefore we delete them
31 iUnitTestsInfo->ResetAndDestroy();
32 delete iUnitTestsInfo;
37 CComponentInfo* CComponentInfo::NewLC(ComponentTesterInitialiserLC aEntryFunc, RPointerArray<CUnitTestInfo>* aUnitTestsInfo)
39 CComponentInfo* self = new (ELeave) CComponentInfo();
40 CleanupStack::PushL(self);
42 // There must be no Leave'able functions following the Construct
43 // as we take control of the objects on exit.
44 self->Construct(aEntryFunc, aUnitTestsInfo);
49 EXPORT_C CComponentInfo* CComponentInfo::NewL(ComponentTesterInitialiserLC aEntryFunc, RPointerArray<CUnitTestInfo>* aUnitTestsInfo)
51 CComponentInfo* self = NewLC(aEntryFunc, aUnitTestsInfo);
57 void CComponentInfo::Construct(ComponentTesterInitialiserLC aEntryFunc, RPointerArray<CUnitTestInfo>* aUnitTestsInfo)
59 // NOTE these must be the final lines of code.
60 // There must be NO Leave'able code following this
61 // as we take control of these objects on exit.
62 iComponentTesterGlobalCreationFuncLC = aEntryFunc;
63 iUnitTestsInfo = aUnitTestsInfo;