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.
sl@0
     1
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// This file contains the definition of the class CComponentInfo
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
/**
sl@0
    19
 @test
sl@0
    20
*/
sl@0
    21
sl@0
    22
#ifndef __COMPONENTINFO_H__
sl@0
    23
#define __COMPONENTINFO_H__
sl@0
    24
sl@0
    25
#include <e32base.h>
sl@0
    26
#include <f32file.h>
sl@0
    27
sl@0
    28
#include <ecom/test_bed/unittestinfo.h>
sl@0
    29
#include <ecom/test_bed/componenttester.h>
sl@0
    30
sl@0
    31
/**
sl@0
    32
	@internalAll
sl@0
    33
	Comments : Holds information about all the tests within a component.
sl@0
    34
 */
sl@0
    35
sl@0
    36
class CComponentInfo : public CBase
sl@0
    37
	{
sl@0
    38
public:
sl@0
    39
sl@0
    40
/**
sl@0
    41
	@fn			static CComponentInfo* NewLC(ComponentTesterInitialiserLC aEntryFunc,  RPointerArray<CUnitTestInfo>* aUnitTestsInfo)
sl@0
    42
	Intended Usage	:	Standard two phase construction which leaves a CComponentInfo on the 
sl@0
    43
	cleanupstack.  This object takes ownership of both parameters.
sl@0
    44
	Error Condition	:	
sl@0
    45
	@since			7.0
sl@0
    46
	@param			aEntryFunc Ptr to function used to create componentTester
sl@0
    47
	@param			aUnitTestsInfo The transition sets in this component test
sl@0
    48
	@return			CComponentInfo* A pointer to the newly created class
sl@0
    49
	@pre 			None
sl@0
    50
	@post			CComponentInfo is on the CleanupStack
sl@0
    51
 */
sl@0
    52
	
sl@0
    53
	static CComponentInfo* NewLC(ComponentTesterInitialiserLC aEntryFunc, RPointerArray<CUnitTestInfo>* aUnitTestsInfo);
sl@0
    54
sl@0
    55
/**
sl@0
    56
	@fn			static CComponentInfo* NewL(ComponentTesterInitialiserLC aCreateFuncLC,  RPointerArray<CUnitTestInfo>* aUnitTestsInfo)
sl@0
    57
	Intended Usage	:	Standard two-phase construction which leaves nothing on the 
sl@0
    58
	cleanup stack.  This object takes ownership of both parameters.
sl@0
    59
	Error Condition	:	
sl@0
    60
	@since			7.0
sl@0
    61
	@param			aCreateFuncLC Ptr to function used to create componentTester
sl@0
    62
	@param			aUnitTestsInfo The transition sets in this component test
sl@0
    63
	@return			CComponentInfo* A pointer to the newly created class
sl@0
    64
	@pre 			None
sl@0
    65
	@post			Nothing is on the CleanupStack
sl@0
    66
 */
sl@0
    67
	
sl@0
    68
	IMPORT_C static CComponentInfo* NewL(ComponentTesterInitialiserLC aCreateFuncLC, RPointerArray<CUnitTestInfo>* aUnitTestsInfo);
sl@0
    69
sl@0
    70
/**
sl@0
    71
	@fn				~CComponentInfo()
sl@0
    72
	Intended Usage	:	Standard destructor
sl@0
    73
	Error Condition	:	
sl@0
    74
	@since			7.0
sl@0
    75
 */
sl@0
    76
	
sl@0
    77
	~CComponentInfo();
sl@0
    78
sl@0
    79
sl@0
    80
/**
sl@0
    81
	@fn				inline ComponentTesterInitialiserLC GlobalEntryFunc() const
sl@0
    82
	Intended Usage	:	Get the pointer to the function entry point used to
sl@0
    83
						create the ComponentTester derived object which kick 
sl@0
    84
						starts the tests.
sl@0
    85
	Error Condition	:	
sl@0
    86
	@since			7.0
sl@0
    87
	@return			ComponentTesterInitialiserLC Function pointer
sl@0
    88
	@pre 			None
sl@0
    89
 */
sl@0
    90
	
sl@0
    91
	inline ComponentTesterInitialiserLC GlobalEntryFunc() const;
sl@0
    92
sl@0
    93
/**
sl@0
    94
	@fn				inline RPointerArray<CUnitTestInfo>& UnitTestsInfo() const
sl@0
    95
	Intended Usage	:	Get a list of the transition sets in this component
sl@0
    96
	Error Condition	:	
sl@0
    97
	@since			7.0
sl@0
    98
	@return			RPointerArray<CUnitTestInfo>& Information on the unit tests contained in 
sl@0
    99
	this component.
sl@0
   100
	@pre 			None
sl@0
   101
 */
sl@0
   102
	
sl@0
   103
	inline const RPointerArray<CUnitTestInfo>& UnitTestsInfo() const;
sl@0
   104
sl@0
   105
private:
sl@0
   106
/**
sl@0
   107
	@fn			CComponentInfo()
sl@0
   108
	Intended Usage	:	Standard constructor.  This object takes ownership of both parameters.
sl@0
   109
	Error Condition	:	
sl@0
   110
	@since			7.0
sl@0
   111
 */
sl@0
   112
	
sl@0
   113
	CComponentInfo();
sl@0
   114
sl@0
   115
/**
sl@0
   116
	@fn				void Construct(ComponentTesterInitialiserLC aEntryFunc, RPointerArray<CUnitTestInfo>* aUnitTestsInfo)
sl@0
   117
	Intended Usage	:	Standard second phase of construction
sl@0
   118
	Error Condition	:	
sl@0
   119
	@since			7.0
sl@0
   120
	@pre 			First phase of construction is complete
sl@0
   121
	@param			aEntryFunc Ptr to function used to create componentTester
sl@0
   122
	@param			aUnitTestsInfo The transition sets in this component test
sl@0
   123
	@post			Object is fully constructed
sl@0
   124
 */
sl@0
   125
	
sl@0
   126
	void Construct(ComponentTesterInitialiserLC aEntryFunc, RPointerArray<CUnitTestInfo>* aUnitTestsInfo);
sl@0
   127
sl@0
   128
private:
sl@0
   129
	/** Holds a pointer to the function capable of creating a CComponentTester derived object
sl@0
   130
	   which will run the unit tests outlined in iUnitTestsInfo.*/
sl@0
   131
	ComponentTesterInitialiserLC iComponentTesterGlobalCreationFuncLC;
sl@0
   132
/** Array of the subsets of transitions in this component. This object takes ownership of 
sl@0
   133
	iUnitTestsInfo at construction.*/
sl@0
   134
	
sl@0
   135
	RPointerArray<CUnitTestInfo>* iUnitTestsInfo;
sl@0
   136
	};
sl@0
   137
sl@0
   138
#include <ecom/test_bed/componentinfo.inl>
sl@0
   139
sl@0
   140
#endif