commonappservices/alarmservertest/TestMultipleAlarmsSuite/inc/TestAlarmControlStateStep.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 CTestAlarmControlStateStep class, which is used 
       
    15 // to test whether the expected alarms are notifying and other checks such 
       
    16 // as number of alarm control objects <= maxalarms value etc.
       
    17 // 
       
    18 //
       
    19 
       
    20 #ifndef __TEST_ALARM_CONTROL_STATE_STEP_H__
       
    21 #define __TEST_ALARM_CONTROL_STATE_STEP_H__
       
    22 
       
    23 // User Includes
       
    24 #include "TestBaseStep.h"
       
    25 
       
    26 /*@{*/
       
    27 // Literal constant defined for identifying step name
       
    28 _LIT(KTestAlarmControlStateStep, "TestAlarmControlStateStep");
       
    29 /*@}*/
       
    30 
       
    31 /**
       
    32 Test step to test whether the expected alarms are notifying and 
       
    33 other checks such as number of alarm control objects <= maxalarms value etc.
       
    34 @internalTechnology
       
    35 @test
       
    36 */
       
    37 class CTestAlarmControlStateStep : public CTestBaseStep
       
    38 	{
       
    39 public:
       
    40 	CTestAlarmControlStateStep(CTestMultipleAlarmsServer& aTestServer);
       
    41 
       
    42 	// TEF virtuals
       
    43 	virtual enum TVerdict 	doTestStepL();
       
    44 	
       
    45 private:
       
    46 	void 					TestAlarmControlStateL(const TPtrC& aAlarmMessage);
       
    47 	};
       
    48 
       
    49 #endif		// __TEST_ALARM_CONTROL_STATE_STEP_H__