sl@0: // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // This file contains the definition of the class CUnitTestInfo sl@0: // This file comment is for DOxygen only and is ignored by EDoc. sl@0: // sl@0: // sl@0: sl@0: /** sl@0: @test sl@0: */ sl@0: sl@0: #ifndef __UNITTESTINFO_H__ sl@0: #define __UNITTESTINFO_H__ sl@0: sl@0: #include sl@0: sl@0: /** sl@0: @internalAll sl@0: Comments : Storage for information about a group of transitions. This group will normally sl@0: correspond to the contents of a CUnitTest. sl@0: */ sl@0: sl@0: NONSHARABLE_CLASS(CUnitTestInfo) : public CBase sl@0: { sl@0: public: sl@0: sl@0: /** sl@0: @fn static CUnitTestInfo* NewLC(const TDesC& aSetId) sl@0: Intended Usage : Two phase constructor which leaves a CTransition* on the cleanup stack sl@0: Error Condition : Leave with an error code. sl@0: @leave KErrNoMemory sl@0: @since 7.0 sl@0: @param aSetId An identifier for this CUnitTestInfo sl@0: @return CUnitTestInfo* A pointer to the newly created class sl@0: @pre None sl@0: @post A CUnitTestInfo is on the CleanupStack sl@0: */ sl@0: sl@0: static CUnitTestInfo* NewLC(const TDesC& aSetId); sl@0: sl@0: /** sl@0: @fn static CUnitTestInfo* NewL(const TDesC& aSetId) sl@0: Intended Usage : Two phase constructor which leaves nothing on the cleanup stack sl@0: Error Condition : sl@0: @since 7.0 sl@0: @param aSetId An identifier for this CUnitTestInfo sl@0: @return CUnitTestInfo* A pointer to the newly created class sl@0: @pre None sl@0: @post Nothing is on the CleanupStack sl@0: */ sl@0: sl@0: static CUnitTestInfo* NewL(const TDesC& aSetId); sl@0: sl@0: /** sl@0: @fn ~CUnitTestInfo() sl@0: Intended Usage : Standard destructor sl@0: Error Condition : sl@0: @since 7.0 sl@0: */ sl@0: sl@0: ~CUnitTestInfo(); sl@0: sl@0: /** sl@0: @fn inline const TDesC& UnitTestId() const sl@0: Intended Usage : Returns the identifier of this CUnitTestInfo sl@0: Error Condition : sl@0: @since 7.0 sl@0: @return const TDesC& The identifier of this UnitTest sl@0: @pre None sl@0: */ sl@0: sl@0: inline const TDesC& UnitTestId() const; sl@0: sl@0: private: sl@0: /** sl@0: @fn CUnitTestInfo() sl@0: Intended Usage : Default constructor sl@0: Error Condition : sl@0: @since 7.0 sl@0: */ sl@0: sl@0: CUnitTestInfo(); sl@0: sl@0: /** sl@0: @fn void ConstructL(const TDesC& aSetId) sl@0: Intended Usage : Second phase of safe construction method sl@0: Error Condition : sl@0: @since 7.0 sl@0: @param aSetId An identifier for this CUnitTestInfo sl@0: @pre First phase of construction is complete sl@0: @post Object if fully constructed sl@0: */ sl@0: sl@0: void ConstructL(const TDesC& aUnitTestId); sl@0: sl@0: private: sl@0: /** An identifier for this unit test */ sl@0: sl@0: HBufC* iUnitTestId; sl@0: }; sl@0: sl@0: #include sl@0: sl@0: #endif