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 common definitions used in the TestBed (error codes etc)
sl@0: // 
sl@0: //
sl@0: 
sl@0: /**
sl@0:  @file
sl@0:  @internalAll
sl@0:  @test
sl@0: */
sl@0: 
sl@0: #ifndef __TESTBEDDEFINITIONS_H__
sl@0: #define __TESTBEDDEFINITIONS_H__
sl@0: 
sl@0: #include <e32base.h>	// For TInt definition
sl@0: 
sl@0: const TInt KErrTestBedInvalidTransition		= -0x6100;	//-24832
sl@0: 
sl@0: const TInt KTestBedRepeatTest				= -0x6101;	//-24833
sl@0: const TInt KTestBedTestLeft					= -0x6102;	//-24834
sl@0: const TInt KTestBedTestCancel				= -0x6103;	//-24835
sl@0: const TInt KTestBedLeakTestLoopDetected		= -0x6104;	//-24836
sl@0: const TInt KTestBedFailedPreConditions		= -0x6105;	//-24837
sl@0: const TInt KTestBedFailedPostConditions		= -0x6106;	//-24838
sl@0: const TInt KTestBedAsynchronousTransition	= -0x6107;	//-24839
sl@0: const TInt KTestBedInvalidStatus			= -0x6108;	//-24840
sl@0: const TInt KTestBedFailedInvariant			= -0x6109;	//-24841
sl@0: 
sl@0: #endif