os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/inc/UnitTestInfo.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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 CUnitTestInfo
sl@0
    15
// This file comment is for DOxygen only and is ignored by EDoc.
sl@0
    16
// 
sl@0
    17
//
sl@0
    18
sl@0
    19
/**
sl@0
    20
 @test
sl@0
    21
*/
sl@0
    22
sl@0
    23
#ifndef __UNITTESTINFO_H__
sl@0
    24
#define __UNITTESTINFO_H__
sl@0
    25
sl@0
    26
#include <e32base.h>
sl@0
    27
sl@0
    28
/**
sl@0
    29
	@internalAll
sl@0
    30
	Comments : Storage for information about a group of transitions.  This group will normally
sl@0
    31
	correspond to the contents of a CUnitTest.
sl@0
    32
 */
sl@0
    33
sl@0
    34
NONSHARABLE_CLASS(CUnitTestInfo) : public CBase
sl@0
    35
	{
sl@0
    36
public:
sl@0
    37
sl@0
    38
/**
sl@0
    39
	@fn				static CUnitTestInfo* NewLC(const TDesC& aSetId)
sl@0
    40
	Intended Usage	:	Two phase constructor which leaves a CTransition* on the cleanup stack
sl@0
    41
	Error Condition	: Leave with an error code.
sl@0
    42
	@leave  		KErrNoMemory
sl@0
    43
	@since			7.0
sl@0
    44
	@param			aSetId An identifier for this CUnitTestInfo
sl@0
    45
	@return			CUnitTestInfo* A pointer to the newly created class
sl@0
    46
	@pre 			None
sl@0
    47
	@post			A CUnitTestInfo is on the CleanupStack
sl@0
    48
 */
sl@0
    49
	
sl@0
    50
	static CUnitTestInfo* NewLC(const TDesC& aSetId);
sl@0
    51
sl@0
    52
/**
sl@0
    53
	@fn				static CUnitTestInfo* NewL(const TDesC& aSetId)
sl@0
    54
	Intended Usage	:	Two phase constructor which leaves nothing on the cleanup stack
sl@0
    55
	Error Condition	:	
sl@0
    56
	@since			7.0
sl@0
    57
	@param			aSetId An identifier for this CUnitTestInfo
sl@0
    58
	@return			CUnitTestInfo* A pointer to the newly created class
sl@0
    59
	@pre 			None
sl@0
    60
	@post			Nothing is on the CleanupStack
sl@0
    61
 */
sl@0
    62
	
sl@0
    63
	static CUnitTestInfo* NewL(const TDesC& aSetId);
sl@0
    64
sl@0
    65
/**
sl@0
    66
	@fn				~CUnitTestInfo()
sl@0
    67
	Intended Usage	:	Standard destructor
sl@0
    68
	Error Condition	:	
sl@0
    69
	@since			7.0
sl@0
    70
 */
sl@0
    71
	
sl@0
    72
	~CUnitTestInfo();
sl@0
    73
sl@0
    74
/**
sl@0
    75
	@fn				inline const TDesC& UnitTestId() const
sl@0
    76
	Intended Usage	:	Returns the identifier of this CUnitTestInfo
sl@0
    77
	Error Condition	:	
sl@0
    78
	@since			7.0
sl@0
    79
	@return			const TDesC& The identifier of this UnitTest
sl@0
    80
	@pre 			None
sl@0
    81
 */
sl@0
    82
	
sl@0
    83
	inline const TDesC& UnitTestId() const;
sl@0
    84
sl@0
    85
private:
sl@0
    86
/**
sl@0
    87
	@fn				CUnitTestInfo()
sl@0
    88
	Intended Usage	:	Default constructor
sl@0
    89
	Error Condition	:	
sl@0
    90
	@since			7.0
sl@0
    91
 */
sl@0
    92
	
sl@0
    93
	CUnitTestInfo();
sl@0
    94
sl@0
    95
/**
sl@0
    96
	@fn				void ConstructL(const TDesC& aSetId)
sl@0
    97
	Intended Usage	:	Second phase of safe construction method
sl@0
    98
	Error Condition	:	
sl@0
    99
	@since			7.0
sl@0
   100
	@param			aSetId An identifier for this CUnitTestInfo
sl@0
   101
	@pre 			First phase of construction is complete
sl@0
   102
	@post			Object if fully constructed
sl@0
   103
 */
sl@0
   104
	
sl@0
   105
	void ConstructL(const TDesC& aUnitTestId);
sl@0
   106
sl@0
   107
private:
sl@0
   108
/** An identifier for this unit test */
sl@0
   109
	
sl@0
   110
	HBufC* iUnitTestId;
sl@0
   111
	};
sl@0
   112
sl@0
   113
#include <ecom/test_bed/unittestinfo.inl>
sl@0
   114
sl@0
   115
#endif