traceservices/commsdebugutility/TE_commsdebugutility/src/step_019_01.cpp
changeset 0 08ec8eefde2f
equal deleted inserted replaced
-1:000000000000 0:08ec8eefde2f
       
     1 // Copyright (c) 2003-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 // This contains Flogger Unit Test Case 019.01
       
    15 
       
    16 // EPOC includes
       
    17 #include <e32base.h>
       
    18 
       
    19 // Test system includes
       
    20 #include "teststepcomsdbg.h"
       
    21 #include "step_019_01.h"
       
    22 
       
    23 
       
    24 #include <comms-infras/commsdebugutility.h>
       
    25 
       
    26 
       
    27 /**
       
    28 * Function  Name	: CFloggerTest019_01
       
    29 * Input parameters	: None
       
    30 * Output parameters : None
       
    31 * Description		: This is the constructor
       
    32 */
       
    33 
       
    34 
       
    35 CFloggerTest019_01::CFloggerTest019_01()
       
    36 	{
       
    37 	// store the name of this test case
       
    38 	SetTestStepName(_L("step_019_01"));
       
    39 	}
       
    40 
       
    41 
       
    42 /**
       
    43 * Function  Name	:~ CFloggerTest019_01
       
    44 * Input parameters	: None
       
    45 * Output parameters : None
       
    46 * Description		: This is the Destructor
       
    47 */
       
    48 
       
    49 
       
    50 CFloggerTest019_01::~CFloggerTest019_01()
       
    51 	{
       
    52 	}
       
    53 
       
    54 
       
    55 /**
       
    56 * Function  Name	: doTestStepL
       
    57 * Input parameters	: None
       
    58 * Output parameters : TVerdict 
       
    59 * Description		: This function returns weather the test case 019_01 has 
       
    60 * 					  passed or failed
       
    61 
       
    62 */
       
    63 
       
    64 TVerdict CFloggerTest019_01::doTestStepL( )
       
    65 	{
       
    66 	INFO_PRINTF1(_L("Step 019.01 called "));
       
    67 	
       
    68 	RFileLogger theFlogger;
       
    69 	TRAPD(res, theFlogger.SetDateAndTime(ETrue, ETrue))
       
    70 
       
    71 	if (res == KErrNone)
       
    72 		SetTestStepResult(EPass);
       
    73 
       
    74 	else
       
    75 		SetTestStepResult(EFail);
       
    76 
       
    77 		
       
    78 	return TestStepResult();
       
    79 	}
       
    80