bthci/bthci2/CommandsEvents/generator/eventteststepsource.tmpl
changeset 0 29b1cd4cb562
child 4 28479eeba3fb
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/bthci/bthci2/CommandsEvents/generator/eventteststepsource.tmpl	Fri Jan 15 08:13:17 2010 +0200
@@ -0,0 +1,80 @@
+// Copyright (c) 2006-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 "Symbian Foundation License v1.0"
+// which accompanies this distribution, and is available
+// at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html".
+//
+// Initial Contributors:
+// Nokia Corporation - initial contribution.
+//
+// Contributors:
+//
+// Description:
+// $FILENAME.cpp
+// This file was generated automatically from the template eventteststepsource.tmpl
+// on $GENERATE_TIME_STAMP
+// Implementation of test step $CLASSNAME.
+// 
+//
+
+/**
+ @file 
+ @internalComponent
+*/
+
+#include "$FILENAME.h"
+#include <TEFSharedData.h>
+#include <bluetooth\hci\$EVENTFILENAME.h>
+
+#include <bluetooth\hci\hardwareerrorevent.h>
+#include <bluetooth\hci\hciopcodes.h>
+#include <bluetooth\hci\writevoicesettingcompleteevent.h>
+
+
+$CLASSNAME::$CLASSNAME()
+	{
+	SetTestStepName(K${TESTSTEPNAME});
+	}
+
+$CLASSNAME::~$CLASSNAME()
+	{
+	}
+
+TVerdict $CLASSNAME::doTestStepL()
+	{
+	if(TestStepResult() != EPass)
+		{
+		return TestStepResult();
+		}
+
+	SetTestStepResult(EFail);
+	
+$EVENTINITPARAMS
+	$EVENTNAME* event = new $EVENTNAME($EVENTPARAMS);
+	CleanupStack::PushL(event);
+
+	if(event->ErrorCode() != EOK)
+		{
+		return TestStepResult();
+		}
+
+	if(event->EventCode() != $EVENTCODE)
+		{
+		return TestStepResult();
+		}
+
+$CHECK_EVENT_ACCESSORS
+
+	$EVENTNAME::Cast(*event);
+
+	// Will panic if not THardwareErrorEvent
+	THardwareErrorEvent::Cast(*event);
+	
+	// Will panic if not TWriteVoiceSettingCompleteEvent
+	TWriteVoiceSettingCompleteEvent::Cast(*event);
+
+	CleanupStack::PopAndDestroy(1);
+	SetTestStepResult(EPass);
+	return TestStepResult();
+	}