Bug 3024 - Mark all vtable & typeinfo exports for TMeta as ABSENT in EABI def files -- rolling back latest commit -- no good
// Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies).
// All rights reserved.
// This component and the accompanying materials are made available
// under the terms of "Eclipse Public License v1.0"
// which accompanies this distribution, and is available
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
//
// Initial Contributors:
// Nokia Corporation - initial contribution.
//
// Contributors:
//
// Description:
// This contains CommDb Unit Test Cases 027.XX
//
//
// EPOC includes
#include <e32base.h>
#include <commdb.h>
#include <d32comm.h>
// Test system includes
#include <networking/log.h>
#include <networking/teststep.h>
#include "Teststepcommdb.h"
#include "TestSuiteCommdb.h"
#include "Step_027_xx.h"
CCommDbTest027_01::CCommDbTest027_01()
{
// store the name of this test case
iTestStepName = _L("step_027_01");
}
CCommDbTest027_01::~CCommDbTest027_01()
{}
TVerdict CCommDbTest027_01::doTestStepL( void )
{
executeStepL();
return EPass;
}
TVerdict CCommDbTest027_01::doTestStepPreambleL()
{
iTheDb=CCommsDatabase::NewL();
iPrefView = iTheDb->OpenConnectionPrefTableLC();
CleanupStack::Pop();
return EPass;
}
TInt CCommDbTest027_01::executeStepL()
{
CCommsDbConnectionPrefTableView::TCommDbIapConnectionPref pref;
User::LeaveIfError(iPrefView->GotoFirstRecord());
iPrefView->ReadConnectionPreferenceL(pref);
return KErrNone;
}
TVerdict CCommDbTest027_01::doTestStepPostambleL()
{
delete iPrefView;
iPrefView = NULL;
delete iTheDb;
iTheDb=NULL;
return EPass;
}
//
CCommDbTest027_02::CCommDbTest027_02()
{
// store the name of this test case
iTestStepName = _L("step_027_02");
}
CCommDbTest027_02::~CCommDbTest027_02()
{}
TVerdict CCommDbTest027_02::doTestStepL( void )
{
Log(_L("Step 027.02 called "));
iTestStepResult = EPass;
CCommDbTest027_01* step027_01 = new(ELeave) CCommDbTest027_01;
CleanupStack::PushL(step027_01);
step027_01->iSuite = iSuite;
doTestStepWithHeapFailureL( *step027_01, KErrNone);
CleanupStack::PopAndDestroy(step027_01);
return iTestStepResult;
}