kerneltest/e32test/usbho/t_otgdi/inc/exampletestcase.h
author Stephane Lenclud <tortoisehg@lenclud.com>
Tue, 27 Apr 2010 20:22:55 +0200
branchanywhere
changeset 95 f561f9ae805b
parent 0 a41df078684a
permissions -rw-r--r--
Trying to get trap/leave to work properly but the whole WINS stuff seems over complicated with a lot of assembly in the middle and it's not working on my compiler. When the throw happens the debugger complains about uncaught exception when I'm definitly inside a catch implemented by our TRAP. I think I'm going to come up with a much simplified trap/leave implementation for SYMC. On my prototype all that stuff was working fine in like 20 lines of C++.

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