testexecmgmt/ucc/Source/TestExecuteUCCPlugin/CUCCTest.h
changeset 0 3da2a79470a7
equal deleted inserted replaced
-1:000000000000 0:3da2a79470a7
       
     1 /*
       
     2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description: 
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 /**
       
    21  @file CUCCTest.h
       
    22 */
       
    23 
       
    24 #ifndef __UCC_TEST_H__
       
    25 #define __UCC_TEST_H__
       
    26 
       
    27 #include <testexecutestepbase.h>
       
    28 #include "CUCCTestStep.h"
       
    29 #include "CUCCServer.h"
       
    30 
       
    31 class CUCCTestStartUseCase : public CUCCTestStep
       
    32 	{
       
    33 public:
       
    34 	CUCCTestStartUseCase();
       
    35 	~CUCCTestStartUseCase();
       
    36 	virtual TVerdict doTestStepL();
       
    37 	};
       
    38 
       
    39 class CUCCTestSignal : public CUCCTestStep
       
    40 	{
       
    41 public:
       
    42 	CUCCTestSignal();
       
    43 	~CUCCTestSignal();
       
    44 	virtual TVerdict doTestStepL();
       
    45 	};
       
    46 
       
    47 class CUCCTestRendezvous : public CUCCTestStep
       
    48 	{
       
    49 public:
       
    50 	CUCCTestRendezvous();
       
    51 	~CUCCTestRendezvous();
       
    52 	virtual TVerdict doTestStepL();
       
    53 	};
       
    54 
       
    55 class CUCCTestWaitfor : public CUCCTestStep
       
    56 	{
       
    57 public:
       
    58 	CUCCTestWaitfor();
       
    59 	~CUCCTestWaitfor();
       
    60 	virtual TVerdict doTestStepL();
       
    61 	};
       
    62 
       
    63 class CUCCTestEndUseCase : public CUCCTestStep
       
    64 	{
       
    65 public:
       
    66 	CUCCTestEndUseCase();
       
    67 	~CUCCTestEndUseCase();
       
    68 	virtual TVerdict doTestStepL();
       
    69 	};
       
    70 
       
    71 class CUCCTestGetVariableName : public CUCCTestStep
       
    72 	{
       
    73 public:
       
    74 	CUCCTestGetVariableName();
       
    75 	~CUCCTestGetVariableName();
       
    76 	virtual TVerdict doTestStepL();
       
    77 	};
       
    78 
       
    79 class CUCCTestRunCommand : public CUCCTestStep
       
    80 	{
       
    81 public:
       
    82 	CUCCTestRunCommand();
       
    83 	~CUCCTestRunCommand();
       
    84 	virtual TVerdict doTestStepL();
       
    85 	};
       
    86 
       
    87 class CUCCTestSetDeviceID : public CUCCTestStep
       
    88 	{
       
    89 public:
       
    90 	CUCCTestSetDeviceID();
       
    91 	~CUCCTestSetDeviceID();
       
    92 	virtual TVerdict doTestStepL();
       
    93 private:
       
    94 	TVerdict UpdateCommdbEntry( CUCCSDeviceControl *aApp );
       
    95 	};
       
    96 
       
    97 _LIT(KTestStartUseCase,"StartUseCase");
       
    98 _LIT(KTestSignal,"Signal");
       
    99 _LIT(KTestRendezvous,"Rendezvous");
       
   100 _LIT(KTestWaitfor,"Waitfor");
       
   101 _LIT(KTestEndUseCase,"EndUseCase");
       
   102 _LIT(KTestGetVariableName,"GetVariableName");
       
   103 _LIT(KTestRunCommand,"RunCommand");
       
   104 _LIT(KTestSetDeviceID,"SetDeviceID");
       
   105 
       
   106 #endif // __UCC_TEST_H__