equal
deleted
inserted
replaced
|
1 |
|
2 // Copyright (c) 2002-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 // ICLCodecTestStep.h |
|
16 // ICL Codec Tests - see "V:\Dev\GT\GT 0137 Multimedia codec - Msrvr\Testing\Unit Test Specifications\Typhoon\" |
|
17 // "SGL.GT0137.xxx Rev0.01 MMF ICL COD Unit Test Specification.xls" |
|
18 // |
|
19 // |
|
20 |
|
21 #ifndef __ICLMDAVIDTESTSTEP_H__ |
|
22 #define __ICLMDAVIDTESTSTEP_H__ |
|
23 |
|
24 #include <testframework.h> |
|
25 #include "TMDACORE.H" |
|
26 |
|
27 // |
|
28 |
|
29 class CIclMdaVidTestStep : public CTestStep, public MDummyConsole |
|
30 { |
|
31 public: |
|
32 static CIclMdaVidTestStep* NewL(const TDesC& aTestName); |
|
33 ~CIclMdaVidTestStep(); |
|
34 protected: |
|
35 CIclMdaVidTestStep(const TDesC& aTestName); |
|
36 void ConstructL(); |
|
37 // from CDummyConsole |
|
38 protected: |
|
39 void Printf(const TDesC& aDes); |
|
40 void Printf(const TDesC& aDes, const TInt aNum); |
|
41 // from CTestStep |
|
42 protected: |
|
43 TVerdict OpenL(); |
|
44 void Close(); |
|
45 TVerdict DoTestStepL(); |
|
46 protected: |
|
47 CActiveScheduler* iScheduler; |
|
48 CMdaCoreTestEngine* iEngine; |
|
49 }; |
|
50 |
|
51 #endif // __ICLMDAVIDTESTSTEP_H__ |
|
52 |