|
1 |
|
2 // Copyright (c) 2004-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 // Header file: Basic tests. |
|
16 // |
|
17 // |
|
18 |
|
19 /** |
|
20 @file OpenFileByHandle7806.h |
|
21 */ |
|
22 |
|
23 #ifndef OPENFILEBYHANDLE7806_H |
|
24 #define OPENFILEBYHANDLE7806_H |
|
25 |
|
26 #include "OpenFileByHandle7804.h" |
|
27 |
|
28 /** |
|
29 * Open new file. |
|
30 * |
|
31 * @class CTestMmfAclntOpenFile7806 |
|
32 * |
|
33 */ |
|
34 class CTestMmfAclntOpenFile7806 : public CTestMmfAclntOpenFile7804 |
|
35 { |
|
36 public: |
|
37 static CTestMmfAclntOpenFile7806* NewL( const TDesC& aTestName, const TDesC& aSectName ); |
|
38 virtual TVerdict DoTestL( CMdaAudioPlayerUtility* aPlayer ); |
|
39 |
|
40 protected: |
|
41 CTestMmfAclntOpenFile7806( const TDesC& aTestName, const TDesC& aSectName ); |
|
42 }; |
|
43 |
|
44 /** |
|
45 * alloc tests for repeats |
|
46 * |
|
47 * @class CTestMmfAclntRepeatPlayAlloc |
|
48 * |
|
49 */ |
|
50 class CTestMmfAclntRepeatPlayAlloc : public CTestMmfAclntOpenFile7806 |
|
51 { |
|
52 public: |
|
53 static CTestMmfAclntRepeatPlayAlloc* NewL( const TDesC& aTestName, const TDesC& aSectName, const TDesC& aKeyName ); |
|
54 virtual TVerdict PerformTestL( CMdaAudioPlayerUtility* aPlayer ); |
|
55 protected: |
|
56 CTestMmfAclntRepeatPlayAlloc( const TDesC& aTestName, const TDesC& aSectName,const TDesC& aKeyName ); |
|
57 protected: |
|
58 TBuf<KNameBufSize> iSectName; |
|
59 TBuf<KNameBufSize> iKeyName; |
|
60 }; |
|
61 |
|
62 |
|
63 #endif // OPENFILEBYHANDLE7806_H |