kerneltest/e32test/usbho/t_otgdi/inc/exampletestcase.h
author Mike Kinghan <mikek@symbian.org>
Tue, 16 Nov 2010 14:39:21 +0000
branchGCC_SURGE
changeset 303 9b85206a602c
parent 0 a41df078684a
permissions -rw-r--r--
We need a way to pass flags to rombuilds in Raptor via extension flm interfaces, so that the CPP pass of the rom input files can be informed what toolchain we are building with and conditionally include or exclude files depending on whether the toolchain could build them.

// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of the License "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:
// @internalComponent
// 
//

#ifndef EXAMPLETESTCASE_H
#define EXAMPLETESTCASE_H


	
/**	
	@SYMTestCaseID				EXAMPLETESTCASE
	@SYMTestCaseDesc			Description - shows various test-framework features
	@SYMFssID 					none
	@SYMPREQ					preq#
	@SYMREQ						n/a
	@SYMTestType				UT
	@SYMTestPriority			1 
	@SYMTestActions 			1. Empty step
								2. Press any key step (with watchdog)
								3. Another press key step (with watchdog)
								4. Watchdog cancel function works
								5. delay step
								6. Empty step
								7. End the test
	@SYMTestExpectedResults 	Example
	@SYMTestStatus				Proto
	
*/
	
// Example test case:
// Something to test the Engine with if ever it changes. Verify development changes, and 
// new test-case creation steps here.
class CExampleTestCase : public CTestCaseRoot
	{
public:
	static CExampleTestCase* NewL(TBool aHost);
	virtual ~CExampleTestCase();

	void WatchdogExpired();

	virtual void ExecuteTestCaseL();
	void DoCancel();
	void RunStepL();
	
	//override the base-class
	void ProcessKey(TKeyCode &aKey);
	TInt GetStepIndex()	{ return(iCaseStep); };
		
	virtual void DescribePreconditions();
	
private:
	CExampleTestCase(TBool aHost);
	void ConstructL();

	
	CTestCaseWatchdog *iWDTimer;
	
	// cancel callback methods (not implemented as a 'Mixin)
	static void FuncA(CTestCaseRoot *pThis);
	static void FuncB(CTestCaseRoot *pThis);
	static void FuncC(CTestCaseRoot *pThis);
	
private:

	enum TCaseSteps
		{
		EFirstStep,
		ESecondStep,
		EThirdStep,
		EFourthStep,
		EFifthStep,
		ESixthStep,
		ELastStep	
		};
	
	TCaseSteps iCaseStep;
	
	const static TTestCaseFactoryReceipt<CExampleTestCase> iFactoryReceipt;
	
	
	};
	
	
#endif // EXAMPLETESTCASE_H