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