equal
deleted
inserted
replaced
|
1 /** |
|
2 * Copyright (c) 2003-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 |
|
22 */ |
|
23 |
|
24 |
|
25 #ifndef __CMTF_SET_CONFIGURATION_TEST_STEP_H__ |
|
26 #define __CMTF_SET_CONFIGURATION_TEST_STEP_H__ |
|
27 |
|
28 #include <test/testexecutestepbase.h> |
|
29 |
|
30 class CMtfTestServer; |
|
31 |
|
32 /** This class is used by the framework to handle a SetConfiguration command in the main |
|
33 script, which allows the script writer to set a particular configuration from the main script.*/ |
|
34 class CMtfSetConfigurationTestStep : public CTestStep |
|
35 { |
|
36 public: |
|
37 |
|
38 virtual ~CMtfSetConfigurationTestStep(); |
|
39 static CMtfSetConfigurationTestStep* NewL(CMtfTestServer& aTestServer); |
|
40 virtual TVerdict doTestStepPreambleL(); |
|
41 virtual TVerdict doTestStepL(); |
|
42 virtual TVerdict doTestStepPostambleL(); |
|
43 |
|
44 protected: |
|
45 CMtfSetConfigurationTestStep(CMtfTestServer& aTestServer); |
|
46 |
|
47 private: |
|
48 CMtfTestServer& iTestServer; |
|
49 }; |
|
50 |
|
51 #endif |
|
52 |