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 class CComponentInfo
22 #ifndef __COMPONENTINFO_H__
23 #define __COMPONENTINFO_H__
28 #include <ecom/test_bed/unittestinfo.h>
29 #include <ecom/test_bed/componenttester.h>
33 Comments : Holds information about all the tests within a component.
36 class CComponentInfo : public CBase
41 @fn static CComponentInfo* NewLC(ComponentTesterInitialiserLC aEntryFunc, RPointerArray<CUnitTestInfo>* aUnitTestsInfo)
42 Intended Usage : Standard two phase construction which leaves a CComponentInfo on the
43 cleanupstack. This object takes ownership of both parameters.
46 @param aEntryFunc Ptr to function used to create componentTester
47 @param aUnitTestsInfo The transition sets in this component test
48 @return CComponentInfo* A pointer to the newly created class
50 @post CComponentInfo is on the CleanupStack
53 static CComponentInfo* NewLC(ComponentTesterInitialiserLC aEntryFunc, RPointerArray<CUnitTestInfo>* aUnitTestsInfo);
56 @fn static CComponentInfo* NewL(ComponentTesterInitialiserLC aCreateFuncLC, RPointerArray<CUnitTestInfo>* aUnitTestsInfo)
57 Intended Usage : Standard two-phase construction which leaves nothing on the
58 cleanup stack. This object takes ownership of both parameters.
61 @param aCreateFuncLC Ptr to function used to create componentTester
62 @param aUnitTestsInfo The transition sets in this component test
63 @return CComponentInfo* A pointer to the newly created class
65 @post Nothing is on the CleanupStack
68 IMPORT_C static CComponentInfo* NewL(ComponentTesterInitialiserLC aCreateFuncLC, RPointerArray<CUnitTestInfo>* aUnitTestsInfo);
72 Intended Usage : Standard destructor
81 @fn inline ComponentTesterInitialiserLC GlobalEntryFunc() const
82 Intended Usage : Get the pointer to the function entry point used to
83 create the ComponentTester derived object which kick
87 @return ComponentTesterInitialiserLC Function pointer
91 inline ComponentTesterInitialiserLC GlobalEntryFunc() const;
94 @fn inline RPointerArray<CUnitTestInfo>& UnitTestsInfo() const
95 Intended Usage : Get a list of the transition sets in this component
98 @return RPointerArray<CUnitTestInfo>& Information on the unit tests contained in
103 inline const RPointerArray<CUnitTestInfo>& UnitTestsInfo() const;
108 Intended Usage : Standard constructor. This object takes ownership of both parameters.
116 @fn void Construct(ComponentTesterInitialiserLC aEntryFunc, RPointerArray<CUnitTestInfo>* aUnitTestsInfo)
117 Intended Usage : Standard second phase of construction
120 @pre First phase of construction is complete
121 @param aEntryFunc Ptr to function used to create componentTester
122 @param aUnitTestsInfo The transition sets in this component test
123 @post Object is fully constructed
126 void Construct(ComponentTesterInitialiserLC aEntryFunc, RPointerArray<CUnitTestInfo>* aUnitTestsInfo);
129 /** Holds a pointer to the function capable of creating a CComponentTester derived object
130 which will run the unit tests outlined in iUnitTestsInfo.*/
131 ComponentTesterInitialiserLC iComponentTesterGlobalCreationFuncLC;
132 /** Array of the subsets of transitions in this component. This object takes ownership of
133 iUnitTestsInfo at construction.*/
135 RPointerArray<CUnitTestInfo>* iUnitTestsInfo;
138 #include <ecom/test_bed/componentinfo.inl>