commonappservices/alarmservertest/TestMultipleAlarmsSuite/inc/TestStartAlertServerStep.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 CTestStartAlertServerStep class. This test step
       
    15 // starts the Alarm Alert Server in a separate thread
       
    16 // 
       
    17 //
       
    18 
       
    19 #ifndef __TEST_START_ALERT_SERVER_STEP_H__
       
    20 #define __TEST_START_ALERT_SERVER_STEP_H__
       
    21 
       
    22 // User Includes
       
    23 #include "TestBaseStep.h"
       
    24 
       
    25 /*@{*/
       
    26 // Literal constant defined for identifying step name
       
    27 _LIT(KTestStartAlertServerStep, "TestStartAlertServerStep");
       
    28 /*@}*/
       
    29 
       
    30 /**
       
    31 The test step that starts the Alarm Alert Server in a separate thread
       
    32 @internalTechnology
       
    33 @test
       
    34 */
       
    35 class CTestStartAlertServerStep : public CTestBaseStep
       
    36 	{
       
    37 public:
       
    38 	CTestStartAlertServerStep(CTestMultipleAlarmsServer& aTestServer);
       
    39 
       
    40 	// TEF pure virtual
       
    41 	TVerdict 				doTestStepL();
       
    42 
       
    43 private:
       
    44 	TInt 					CreateThreadAndStartAltSrv();
       
    45 	};
       
    46 
       
    47 #endif		// __TEST_START_ALERT_SERVER_STEP_H__