sl@0
|
1 |
/**
|
sl@0
|
2 |
* Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
3 |
* All rights reserved.
|
sl@0
|
4 |
* This component and the accompanying materials are made available
|
sl@0
|
5 |
* under the terms of "Eclipse Public License v1.0"
|
sl@0
|
6 |
* which accompanies this distribution, and is available
|
sl@0
|
7 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
8 |
*
|
sl@0
|
9 |
* Initial Contributors:
|
sl@0
|
10 |
* Nokia Corporation - initial contribution.
|
sl@0
|
11 |
*
|
sl@0
|
12 |
* Contributors:
|
sl@0
|
13 |
*
|
sl@0
|
14 |
* Description:
|
sl@0
|
15 |
*
|
sl@0
|
16 |
*/
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
|
sl@0
|
20 |
/**
|
sl@0
|
21 |
@file UloggerServerTest1Step.h
|
sl@0
|
22 |
@internalTechnology
|
sl@0
|
23 |
*/
|
sl@0
|
24 |
#if (!defined __ULOGGERSERVERTEST1_STEP_H__)
|
sl@0
|
25 |
#define __ULOGGERSERVERTEST1_STEP_H__
|
sl@0
|
26 |
#include <test/testexecutestepbase.h>
|
sl@0
|
27 |
#include "te_uloggerservertestsuitestepbase.h"
|
sl@0
|
28 |
|
sl@0
|
29 |
|
sl@0
|
30 |
class CUloggerServerTest1Step : public CTe_UloggerServerTestSuiteStepBase
|
sl@0
|
31 |
{
|
sl@0
|
32 |
public:
|
sl@0
|
33 |
CUloggerServerTest1Step();
|
sl@0
|
34 |
~CUloggerServerTest1Step();
|
sl@0
|
35 |
virtual TVerdict doTestStepPreambleL();
|
sl@0
|
36 |
virtual TVerdict doTestStepL();
|
sl@0
|
37 |
virtual TVerdict doTestStepPostambleL();
|
sl@0
|
38 |
|
sl@0
|
39 |
//test methods
|
sl@0
|
40 |
TInt Test1L();//CULoggerServer::NewLC
|
sl@0
|
41 |
TInt Test2L();//CULoggerServer::IncrementSessions
|
sl@0
|
42 |
TInt Test3L();//CULoggerServer::Stop
|
sl@0
|
43 |
TInt Test4L();//CULoggerServer::GetPrimaryFilters
|
sl@0
|
44 |
TInt Test5L();//CULoggerServer::GetSecondaryFilters
|
sl@0
|
45 |
TInt Test6L();//CULoggerServer::RemovePrimaryFilterfromConfig
|
sl@0
|
46 |
TInt Test6AL();//CULoggerServer::RemoveSecondaryFilterfromConfig
|
sl@0
|
47 |
TInt Test7L();//CULoggerServer::EnablePrimaryFilter
|
sl@0
|
48 |
TInt Test8L();//CULoggerServer::SetSecondaryFilter
|
sl@0
|
49 |
TInt Test9L();//CULoggerServer::Start
|
sl@0
|
50 |
TInt Test10L();//CULoggerServer::AddOutputPlugin
|
sl@0
|
51 |
TInt Test11L();//CULoggerServer::RemoveOutputPlugin
|
sl@0
|
52 |
TInt Test12L();//CULoggerServer::SetActiveOutputMedia
|
sl@0
|
53 |
TInt Test13L();//CULoggerServer::SetOutputPluginSettings
|
sl@0
|
54 |
TInt Test14L();//CULoggerServer::GetActiveOutput
|
sl@0
|
55 |
TInt Test15L();//CULoggerServer::GetInstalledPlugins
|
sl@0
|
56 |
TInt Test16L();//CULoggerServer::GetOutputPluginSettingsL
|
sl@0
|
57 |
TInt Test17L();//CULoggerServer::GetOutputChannelL
|
sl@0
|
58 |
TInt Test18L();//CULoggerServer::SetBufferSizeL
|
sl@0
|
59 |
TInt Test19L();//CULoggerServer::SetDataNotificationSizeL
|
sl@0
|
60 |
TInt Test20L();//CULoggerServer::GetBufferSize
|
sl@0
|
61 |
TInt Test21L();// CULoggerServer::GetDataNotificationSize
|
sl@0
|
62 |
TInt Test22L();//CULoggerServer::SetGlobalSecondaryFilters
|
sl@0
|
63 |
TInt Test23L();//CULoggerServer::ReadBufferL
|
sl@0
|
64 |
TInt Test24L();//CULoggerServer::DataNotification
|
sl@0
|
65 |
TInt Test25L();//CULoggerServer::Set buffer mode
|
sl@0
|
66 |
TInt Test26L();//CULoggerServer::UnconfigureCurrentChannel
|
sl@0
|
67 |
TInt Test27L();//CULoggerServer::DoPostProcessing
|
sl@0
|
68 |
TInt Test28L();//CULoggerServer::RemoveOutputPluginSettingsL
|
sl@0
|
69 |
TInt Test29L();//CULoggerServer::GetInstalledControlPlugins
|
sl@0
|
70 |
TInt Test30L();//CULoggerServer::SetActiveControlMedia + DeActivateControlMedia
|
sl@0
|
71 |
TInt Test31L();//CULoggerServer::ProcessCommandL ver1
|
sl@0
|
72 |
|
sl@0
|
73 |
// Please add/modify your class members here:
|
sl@0
|
74 |
private:
|
sl@0
|
75 |
CActiveScheduler *iScheduler;
|
sl@0
|
76 |
TInt iErrors;
|
sl@0
|
77 |
TInt iMediaCount; //this variable will be used as an counter for "mediaX"
|
sl@0
|
78 |
};
|
sl@0
|
79 |
|
sl@0
|
80 |
_LIT(KUloggerServerTest1Step,"UloggerServerTest1Step");
|
sl@0
|
81 |
|
sl@0
|
82 |
#endif
|