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
|
|
22 |
@test
|
|
23 |
@internalComponent - Internal Symbian test code
|
|
24 |
*/
|
|
25 |
|
|
26 |
#include <testexecuteserverbase.h>
|
|
27 |
#include <testexecutestepbase.h>
|
|
28 |
#ifndef TEFPANICTEST_H_
|
|
29 |
#define TEFPANICTEST_H_
|
|
30 |
|
|
31 |
_LIT(KServerName,"TEF_LoggerTestStep");
|
|
32 |
class CTEFPanicBugServer : public CTestServer
|
|
33 |
{
|
|
34 |
public:
|
|
35 |
static CTEFPanicBugServer* NewL();
|
|
36 |
virtual CTestStep* CreateTestStep(const TDesC& aStepName);
|
|
37 |
private:
|
|
38 |
};
|
|
39 |
|
|
40 |
_LIT(KTEFPanicBugStep, "TEFPanicBugStep");
|
|
41 |
class CTEFPanicBugStep : public CTestStep
|
|
42 |
{
|
|
43 |
public:
|
|
44 |
CTEFPanicBugStep();
|
|
45 |
virtual TVerdict doTestStepL(void);
|
|
46 |
};
|
|
47 |
|
|
48 |
_LIT(KTEFPanicSomeThingStep, "TEFPanicSomeThingStep");
|
|
49 |
class CTEFPanicSomeThingStep : public CTestStep
|
|
50 |
{
|
|
51 |
public:
|
|
52 |
CTEFPanicSomeThingStep();
|
|
53 |
|
|
54 |
virtual TVerdict doTestStepL(void);
|
|
55 |
};
|
|
56 |
|
|
57 |
_LIT(KTEFPanicEmptyStep, "TEFPanicEmptyStep");
|
|
58 |
class CTEFPanicEmptyStep : public CTestStep
|
|
59 |
{
|
|
60 |
public:
|
|
61 |
CTEFPanicEmptyStep();
|
|
62 |
virtual TVerdict doTestStepL(void);
|
|
63 |
};
|
|
64 |
|
|
65 |
_LIT(KTEFPanicDblSpaceStep, "TEFPanicDblSpaceStep");
|
|
66 |
class CTEFPanicDblSpaceStep : public CTestStep
|
|
67 |
{
|
|
68 |
public:
|
|
69 |
CTEFPanicDblSpaceStep();
|
|
70 |
virtual TVerdict doTestStepL(void);
|
|
71 |
};
|
|
72 |
_LIT(KTEFIgnoreStep, "TEFIgnoreStep");
|
|
73 |
class CTEFIgnoreStep : public CTestStep
|
|
74 |
{
|
|
75 |
public:
|
|
76 |
CTEFIgnoreStep();
|
|
77 |
virtual TVerdict doTestStepL(void);
|
|
78 |
};
|
|
79 |
|
|
80 |
_LIT(KTEFPassStep, "TEFPassStep");
|
|
81 |
class CTEFPassStep : public CTestStep
|
|
82 |
{
|
|
83 |
public:
|
|
84 |
CTEFPassStep();
|
|
85 |
virtual TVerdict doTestStepL(void);
|
|
86 |
};
|
|
87 |
|
|
88 |
#endif /*TEFPANICTEST_H_*/
|