equal
deleted
inserted
replaced
|
1 // Copyright (c) 2004-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 the License "Symbian Foundation License v1.0" |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.symbianfoundation.org/legal/sfl-v10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // This contains CTestTimewBase which is the base class for all |
|
15 // the Psd Agx suite test steps |
|
16 // |
|
17 // |
|
18 |
|
19 #ifndef TEST_TIMEW_BASE_H |
|
20 #define TEST_TIMEW_BASE_H |
|
21 |
|
22 #include "almmod.h" |
|
23 #include <TestExecuteStepBase.h> |
|
24 |
|
25 |
|
26 class CTestTimewBase : public CTestStep |
|
27 { |
|
28 public: |
|
29 CTestTimewBase(); |
|
30 ~CTestTimewBase(); |
|
31 virtual enum TVerdict doTestStepPreambleL(); |
|
32 virtual enum TVerdict doTestStepPostambleL(); CAlmModel* Model(); |
|
33 |
|
34 private: |
|
35 CActiveScheduler* iSchedular; |
|
36 |
|
37 protected: CAlmModel* iModel;}; |
|
38 |
|
39 #endif /* TEST_TIMEW_BASE_H */ |