commonappservices/alarmservertest/TestMultipleAlarmsSuite/inc/TestAlarmSnoozeStep.h
changeset 0 2e3d3ce01487
equal deleted inserted replaced
-1:000000000000 0:2e3d3ce01487
       
     1 // Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 // Contains declaration of CTestAlarmSnoozeStep class, which is used for snoozing a 
       
    15 // a particular alarm.
       
    16 // 
       
    17 //
       
    18 
       
    19 #ifndef __TEST_ALARM_SNOOZE_STEP_H__
       
    20 #define __TEST_ALARM_SNOOZE_STEP_H__
       
    21 
       
    22 // User Includes
       
    23 #include "TestBaseStep.h"
       
    24 
       
    25 /*@{*/
       
    26 // Literal constant defined for identifying step name
       
    27 _LIT(KTestAlarmSnoozeStep, "TestAlarmSnoozeStep");
       
    28 /*@}*/
       
    29 
       
    30 // Default minutes to snooze
       
    31 const TInt KDefaultMinsToSnooze = 3;
       
    32 
       
    33 /**
       
    34 Test step to snooze a particular alarm
       
    35 @internalTechnology
       
    36 @test
       
    37 */
       
    38 class CTestAlarmSnoozeStep : public CTestBaseStep
       
    39 	{
       
    40 public:
       
    41 	CTestAlarmSnoozeStep(CTestMultipleAlarmsServer& aTestServer);
       
    42 
       
    43 	// TEF pure virtual
       
    44 	TVerdict 				doTestStepL();
       
    45 	
       
    46 private:
       
    47 	void					SnoozeAlarmL(const TDesC& aAlarmMessage);
       
    48 	};
       
    49 
       
    50 #endif		// __TEST_ALARM_SNOOZE_STEP_H__