equal
deleted
inserted
replaced
|
1 // Copyright (c) 2005-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 // The following test case is used to test writable APIs in RApaLsSession and to test whether |
|
15 // apparctestserver process has the capability to access those APIs. |
|
16 // |
|
17 // |
|
18 |
|
19 /** |
|
20 @file |
|
21 @internalComponent - Internal Symbian test code |
|
22 */ |
|
23 |
|
24 #if !defined(__T_CAPABILITY2_H__) |
|
25 #define __T_CAPABILITY2_H__ |
|
26 |
|
27 #include "apparctestserver.h" |
|
28 #include "appfwk_test_appui.h" |
|
29 |
|
30 class RApaLsSession; |
|
31 |
|
32 //! CT_Capability2 |
|
33 /** |
|
34 This class is used to test writable apis in RApaLsSession |
|
35 */ |
|
36 class CT_Capability2 : public CTestStep |
|
37 { |
|
38 public: |
|
39 CT_Capability2(); |
|
40 virtual TVerdict doTestStepL(); |
|
41 void ExecuteL(RApaLsSession& aLs); |
|
42 private: |
|
43 ~CT_Capability2(); |
|
44 private: |
|
45 }; |
|
46 |
|
47 _LIT(KT_Capability2,"T_Capability2"); |
|
48 |
|
49 #endif |