diff -r 238255e8b033 -r 84d9eb65b26f email/pop3andsmtpmtm/imapservermtm/test/src/T_DecodeServer.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/email/pop3andsmtpmtm/imapservermtm/test/src/T_DecodeServer.cpp Mon May 03 12:29:07 2010 +0300 @@ -0,0 +1,81 @@ +// Copyright (c) 2005-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: +// + +#include "t_decodeserver.h" +#include "t_test_decode_step.h" + +_LIT(KServerName,"T_DecodeServer"); +CImapDecodeServer* CImapDecodeServer::NewL() + { + CImapDecodeServer * server = new (ELeave) CImapDecodeServer(); + CleanupStack::PushL(server); + server-> ConstructL(KServerName); + + CleanupStack::Pop(server); + return server; + } + +LOCAL_C void MainL() + { + CActiveScheduler* sched=NULL; + sched=new(ELeave) CActiveScheduler; + CActiveScheduler::Install(sched); + CImapDecodeServer* server = NULL; + // Create the CTestServer derived server + TRAPD(err,server = CImapDecodeServer::NewL()); + if(!err) + { + // Sync with the client and enter the active scheduler + RProcess::Rendezvous(KErrNone); + sched->Start(); + } + delete server; + delete sched; + } + + +GLDEF_C TInt E32Main() + { + __UHEAP_MARK; + + CTrapCleanup* cleanup = CTrapCleanup::New(); + if(cleanup == NULL) + { + return KErrNoMemory; + } + TRAPD(err,MainL()); + delete cleanup; + + __UHEAP_MARKEND; + return err; + } + + +RFs& CImapDecodeServer::Fs() + { + return iFs; + }; + +CTestStep* CImapDecodeServer::CreateTestStep(const TDesC& aStepName) + { + + CTestStep* testStep = NULL; + + if(aStepName == KTestDecode) + testStep = new CTestDecode(); + + + return testStep; + }