os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/inc/ComponentInfo.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // This file contains the definition of the class CComponentInfo
    15 // 
    16 //
    17 
    18 /**
    19  @test
    20 */
    21 
    22 #ifndef __COMPONENTINFO_H__
    23 #define __COMPONENTINFO_H__
    24 
    25 #include <e32base.h>
    26 #include <f32file.h>
    27 
    28 #include <ecom/test_bed/unittestinfo.h>
    29 #include <ecom/test_bed/componenttester.h>
    30 
    31 /**
    32 	@internalAll
    33 	Comments : Holds information about all the tests within a component.
    34  */
    35 
    36 class CComponentInfo : public CBase
    37 	{
    38 public:
    39 
    40 /**
    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.
    44 	Error Condition	:	
    45 	@since			7.0
    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
    49 	@pre 			None
    50 	@post			CComponentInfo is on the CleanupStack
    51  */
    52 	
    53 	static CComponentInfo* NewLC(ComponentTesterInitialiserLC aEntryFunc, RPointerArray<CUnitTestInfo>* aUnitTestsInfo);
    54 
    55 /**
    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.
    59 	Error Condition	:	
    60 	@since			7.0
    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
    64 	@pre 			None
    65 	@post			Nothing is on the CleanupStack
    66  */
    67 	
    68 	IMPORT_C static CComponentInfo* NewL(ComponentTesterInitialiserLC aCreateFuncLC, RPointerArray<CUnitTestInfo>* aUnitTestsInfo);
    69 
    70 /**
    71 	@fn				~CComponentInfo()
    72 	Intended Usage	:	Standard destructor
    73 	Error Condition	:	
    74 	@since			7.0
    75  */
    76 	
    77 	~CComponentInfo();
    78 
    79 
    80 /**
    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 
    84 						starts the tests.
    85 	Error Condition	:	
    86 	@since			7.0
    87 	@return			ComponentTesterInitialiserLC Function pointer
    88 	@pre 			None
    89  */
    90 	
    91 	inline ComponentTesterInitialiserLC GlobalEntryFunc() const;
    92 
    93 /**
    94 	@fn				inline RPointerArray<CUnitTestInfo>& UnitTestsInfo() const
    95 	Intended Usage	:	Get a list of the transition sets in this component
    96 	Error Condition	:	
    97 	@since			7.0
    98 	@return			RPointerArray<CUnitTestInfo>& Information on the unit tests contained in 
    99 	this component.
   100 	@pre 			None
   101  */
   102 	
   103 	inline const RPointerArray<CUnitTestInfo>& UnitTestsInfo() const;
   104 
   105 private:
   106 /**
   107 	@fn			CComponentInfo()
   108 	Intended Usage	:	Standard constructor.  This object takes ownership of both parameters.
   109 	Error Condition	:	
   110 	@since			7.0
   111  */
   112 	
   113 	CComponentInfo();
   114 
   115 /**
   116 	@fn				void Construct(ComponentTesterInitialiserLC aEntryFunc, RPointerArray<CUnitTestInfo>* aUnitTestsInfo)
   117 	Intended Usage	:	Standard second phase of construction
   118 	Error Condition	:	
   119 	@since			7.0
   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
   124  */
   125 	
   126 	void Construct(ComponentTesterInitialiserLC aEntryFunc, RPointerArray<CUnitTestInfo>* aUnitTestsInfo);
   127 
   128 private:
   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.*/
   134 	
   135 	RPointerArray<CUnitTestInfo>* iUnitTestsInfo;
   136 	};
   137 
   138 #include <ecom/test_bed/componentinfo.inl>
   139 
   140 #endif