lowlevellibsandfws/pluginfw/Test_Bed/inc/TestBedDefinitions.h
author Stefan Karlsson <stefan.karlsson@nokia.com>
Mon, 29 Mar 2010 12:27:51 +0100
branchCompilerCompatibility
changeset 14 69a2780c0013
parent 0 e4d67989cc36
permissions -rw-r--r--
Merge.

// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
// This file contains common definitions used in the TestBed (error codes etc)
// 
//

/**
 @file
 @internalAll
 @test
*/

#ifndef __TESTBEDDEFINITIONS_H__
#define __TESTBEDDEFINITIONS_H__

#include <e32base.h>	// For TInt definition

const TInt KErrTestBedInvalidTransition		= -0x6100;	//-24832

const TInt KTestBedRepeatTest				= -0x6101;	//-24833
const TInt KTestBedTestLeft					= -0x6102;	//-24834
const TInt KTestBedTestCancel				= -0x6103;	//-24835
const TInt KTestBedLeakTestLoopDetected		= -0x6104;	//-24836
const TInt KTestBedFailedPreConditions		= -0x6105;	//-24837
const TInt KTestBedFailedPostConditions		= -0x6106;	//-24838
const TInt KTestBedAsynchronousTransition	= -0x6107;	//-24839
const TInt KTestBedInvalidStatus			= -0x6108;	//-24840
const TInt KTestBedFailedInvariant			= -0x6109;	//-24841

#endif