commsconfig/commsdatabaseshim/ts_commdb/ts_connpref/TS_ConnPrefSuite.h
changeset 72 ae47d0499bee
parent 68 5da8188e392b
child 77 c9776eadbffd
equal deleted inserted replaced
68:5da8188e392b 72:ae47d0499bee
     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 * Header for TS_ConnPrefSuite class. This is the container
       
    16 * class for all the CommDb ConnPrefSuite test steps
       
    17 * 
       
    18 *
       
    19 */
       
    20 
       
    21 
       
    22 
       
    23 /**
       
    24  @file TS_ConnPrefSuite.h
       
    25 */
       
    26 
       
    27 #if (!defined __TS_CONNPREFSUITE_H__)
       
    28 #define __TS_CONNPREFSUITE_H__
       
    29 
       
    30 #include <e32std.h>
       
    31 #include <networking/testsuite.h>
       
    32 
       
    33 
       
    34 #define MAX_NAME_LENGTH		10			///< Maximum length of connection name
       
    35 
       
    36 _LIT (KTxtVersion,"1.00");				///< Version string for ScheduleTest
       
    37 //_LIT (KConnLogString, "Name [%S], RConnection[%x], RSocketServ[%x], Clients: %i");
       
    38 
       
    39 
       
    40 class CTS_ConnPrefStep;
       
    41 
       
    42 class CTS_ConnPrefSuite : public CTestSuite
       
    43 {
       
    44 public:
       
    45 	virtual		~CTS_ConnPrefSuite();
       
    46 	void		InitialiseL(void);
       
    47 	void		AddTestStepL(CTS_ConnPrefStep* ptrTestStep );
       
    48 	TPtrC		GetVersion(void);	
       
    49 	
       
    50 private:
       
    51 	// nuffin
       
    52 };
       
    53 
       
    54 void CommInitL(TBool);
       
    55 
       
    56 #endif /* __TS_CONNEPREFSUITE_H__ */