testexecmdw/tef/tef/test/regressiontest/utilitiesut/src/ctefutilitiesut.cpp
branchRCL_3
changeset 3 9397a16b6eb8
parent 1 6edeef394eb7
equal deleted inserted replaced
1:6edeef394eb7 3:9397a16b6eb8
     1 /*
       
     2 * Copyright (c) 2005-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 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 /**
       
    21  @file CTEFUtilitiesUT.cpp
       
    22 */
       
    23 
       
    24 #include "ctefutilitiesut.h"
       
    25 #include <test/tefexportconst.h>
       
    26 //#include "TestPlatSecSetCapabilities.h"
       
    27 
       
    28 void CTEFUtilityUT::SetupL()
       
    29 /**
       
    30  * SetupL
       
    31  */
       
    32 	{
       
    33 	CTestFixture::SetupL();
       
    34 //	iPletSecStep = new CTestPlatSecSetCapabilities();
       
    35 	}
       
    36 
       
    37 void CTEFUtilityUT::TearDownL()
       
    38 /**
       
    39  * TearDownL
       
    40  */
       
    41 	{
       
    42 	CTestFixture::TearDownL();
       
    43 	}
       
    44 
       
    45 void CTEFUtilityUT::TestPlatSec_GetCapability()
       
    46 	{
       
    47 //	iPletSecStep->doTestStepL();
       
    48 	TInt theInt = 10;
       
    49 //
       
    50 //	TBool res = iConfig.GetInt(_L("Int"),theInt);
       
    51 //	ASSERT_TRUE(res);
       
    52 	ASSERT_TRUE(theInt == 10);
       
    53 //
       
    54 //	ASSERT_FALSE(theString.Compare(KTestString) );
       
    55 	}
       
    56 CTestSuite* CTEFUtilityUT::CreateSuiteL(const TDesC& aName)
       
    57 /**
       
    58  * CreateSuiteL
       
    59  *
       
    60  * @param aName - Suite name
       
    61  * @return - Suite
       
    62  */
       
    63 	{
       
    64 	SUB_SUITE
       
    65 	ADD_TEST_STEP_CLASS( CTEFUtilityUT,TestPlatSec_GetCapability )
       
    66 	END_SUITE
       
    67 	}