commsconfig/commsdatabaseshim/ts_commdb/Step_027_xx.cpp
changeset 72 ae47d0499bee
parent 68 5da8188e392b
child 77 c9776eadbffd
--- a/commsconfig/commsdatabaseshim/ts_commdb/Step_027_xx.cpp	Tue Aug 24 14:43:02 2010 +0100
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,98 +0,0 @@
-// 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;
-	}
-