commonappservices/alarmserver/Test/unit/inc/TEAlarmTestSilentUntilStep.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 //
       
    15 
       
    16 #ifndef __TEALARMTESTSILENTUNTILSTEP_H__
       
    17 #define __TEALARMTESTSILENTUNTILSTEP_H__
       
    18 
       
    19 #include "TEAlarmTestSilentStep.h"
       
    20 class RASCliSession;
       
    21 
       
    22 class CTEAlarmTestSilentUntilStep : public CTEAlarmTestSilentStep
       
    23 	{
       
    24 public:
       
    25 	CTEAlarmTestSilentUntilStep();
       
    26 	~CTEAlarmTestSilentUntilStep();
       
    27 	
       
    28 	virtual TVerdict doTestStepPreambleL();
       
    29 	virtual TVerdict doTestStepL();
       
    30 	virtual TVerdict doTestStepPostambleL();
       
    31 	
       
    32 private:
       
    33 	TBool CheckSilentUntilL(const RASCliSession &aSession);	
       
    34 	
       
    35 private:
       
    36 	TTime iSilentUntil;
       
    37 	TTime iInitialTime;
       
    38 	TBool iInvalidated;
       
    39 	};
       
    40 
       
    41 _LIT(KTEAlarmTestSilentUntilStep, "SilentUntilStep");
       
    42 
       
    43 #endif // __TEALARMTESTSILENTUNTILSTEP_H__