telephonyserver/etelserverandcore/TETEL/TE_ETEL/TE_Etelloaddrv.cpp
changeset 0 3553901f7fa8
child 24 6638e7f4bd8f
equal deleted inserted replaced
-1:000000000000 0:3553901f7fa8
       
     1 // Copyright (c) 1997-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 "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Contributors:
       
    12 //
       
    13 // Description:
       
    14 //
       
    15 
       
    16 #include "TE_EtelBase.h"
       
    17 #include "TE_Etelloaddrv.h"
       
    18 
       
    19 
       
    20 CTestEtelLoadDrv::CTestEtelLoadDrv()
       
    21 /** Each test step initialises it's own name
       
    22 */
       
    23 	{
       
    24 	SetTestStepName(_L("TestEtelLoadDrv"));
       
    25 	}
       
    26 
       
    27 enum TVerdict CTestEtelLoadDrv::doTestStepL()
       
    28 {
       
    29     TInt  res = iCommServer.Connect();
       
    30     TESTCHECK(res, KErrNone);
       
    31 
       
    32 	res = iCommServer.LoadCommModule(_L("ECUART.CSY"));
       
    33     TESTCHECKCONDITION(res==KErrNone || res==KErrAlreadyExists);
       
    34 
       
    35 	return TestStepResult();
       
    36 }
       
    37 
       
    38 CTestEtelUnLoadDrv::CTestEtelUnLoadDrv()
       
    39 /** Each test step initialises it's own name
       
    40 */
       
    41 	{
       
    42 	SetTestStepName(_L("TestEtelUnLoadDrv"));
       
    43 	}
       
    44 
       
    45 enum TVerdict CTestEtelUnLoadDrv::doTestStepL()
       
    46 {
       
    47 	return TestStepResult();
       
    48 }