0
|
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 GlobalShareStep.h
|
|
22 |
*/
|
|
23 |
#if (!defined __GLOBALSHARE_STEP_H__)
|
|
24 |
#define __GLOBALSHARE_STEP_H__
|
|
25 |
#include <testexecutestepbase.h>
|
|
26 |
|
|
27 |
// __EDIT_ME__ - Create your own test step definitions
|
|
28 |
class CGlobalShareStep1 : public CTestStep
|
|
29 |
{
|
|
30 |
public:
|
|
31 |
CGlobalShareStep1();
|
|
32 |
~CGlobalShareStep1();
|
|
33 |
virtual TVerdict doTestStepL();
|
|
34 |
};
|
|
35 |
|
|
36 |
class CGlobalShareStep2 : public CTestStep
|
|
37 |
{
|
|
38 |
public:
|
|
39 |
CGlobalShareStep2();
|
|
40 |
~CGlobalShareStep2();
|
|
41 |
virtual TVerdict doTestStepL();
|
|
42 |
};
|
|
43 |
|
|
44 |
/*@{*/
|
|
45 |
// Literals
|
|
46 |
_LIT(KGlobalShareStep1,"GlobalShareStep1");
|
|
47 |
_LIT(KGlobalShareStep2,"GlobalShareStep2");
|
|
48 |
/*@{*/
|
|
49 |
|
|
50 |
#endif
|