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 CUnitTestInfo
15 // This file comment is for DOxygen only and is ignored by EDoc.
23 #ifndef __UNITTESTINFO_H__
24 #define __UNITTESTINFO_H__
30 Comments : Storage for information about a group of transitions. This group will normally
31 correspond to the contents of a CUnitTest.
34 NONSHARABLE_CLASS(CUnitTestInfo) : public CBase
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.
44 @param aSetId An identifier for this CUnitTestInfo
45 @return CUnitTestInfo* A pointer to the newly created class
47 @post A CUnitTestInfo is on the CleanupStack
50 static CUnitTestInfo* NewLC(const TDesC& aSetId);
53 @fn static CUnitTestInfo* NewL(const TDesC& aSetId)
54 Intended Usage : Two phase constructor which leaves nothing on the cleanup stack
57 @param aSetId An identifier for this CUnitTestInfo
58 @return CUnitTestInfo* A pointer to the newly created class
60 @post Nothing is on the CleanupStack
63 static CUnitTestInfo* NewL(const TDesC& aSetId);
67 Intended Usage : Standard destructor
75 @fn inline const TDesC& UnitTestId() const
76 Intended Usage : Returns the identifier of this CUnitTestInfo
79 @return const TDesC& The identifier of this UnitTest
83 inline const TDesC& UnitTestId() const;
88 Intended Usage : Default constructor
96 @fn void ConstructL(const TDesC& aSetId)
97 Intended Usage : Second phase of safe construction method
100 @param aSetId An identifier for this CUnitTestInfo
101 @pre First phase of construction is complete
102 @post Object if fully constructed
105 void ConstructL(const TDesC& aUnitTestId);
108 /** An identifier for this unit test */
113 #include <ecom/test_bed/unittestinfo.inl>