equal
deleted
inserted
replaced
|
1 // Copyright (c) 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 // |
|
15 // mectest005step.h |
|
16 // |
|
17 |
|
18 /** |
|
19 @file |
|
20 */ |
|
21 |
|
22 |
|
23 #ifndef MECTEST005STEP_H |
|
24 #define MECTEST005STEP_H |
|
25 |
|
26 #include "mecunitteststepbase.h" |
|
27 |
|
28 |
|
29 _LIT(KMecTest005Step, "MecTest005"); |
|
30 |
|
31 |
|
32 class CMecTest005Step : public CMecUnitTestStepBase |
|
33 { |
|
34 public: |
|
35 virtual ~CMecTest005Step(); |
|
36 |
|
37 public: |
|
38 explicit CMecTest005Step() |
|
39 : CMecUnitTestStepBase(KMecTest005Step) |
|
40 { |
|
41 } |
|
42 |
|
43 virtual TVerdict RunTestStepL(); |
|
44 }; |
|
45 |
|
46 #endif |
|
47 // MECTEST005STEP_H |
|
48 |
|
49 |