kerneltest/e32test/usbho/t_otgdi/inc/exampletestcase.h
author Mike Kinghan <mikek@symbian.org>
Wed, 21 Jul 2010 14:39:33 +0100
branchGCC_SURGE
changeset 218 cf8aa66d1b90
parent 0 a41df078684a
permissions -rw-r--r--
Fix for bug 3354 - [GCCE] <typeinfo> not found in e32test build Fix for bug 3355 - [GCCE] "low_mem_requests.h" not found in e32test build. Fix for bug 3356 - [GCCE] <assp/naviengine/pci.h> not found in e32test build

// 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