sl@0: /* sl@0: * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of the License "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: sl@0: /** sl@0: @file sl@0: */ sl@0: sl@0: #include "tcancel.h" sl@0: #include "t_output.h" sl@0: #include "t_testhandler.h" sl@0: #include "t_testrunner.h" sl@0: sl@0: CCancelStart* CCancelStart::NewL(CConsoleBase& aConsole, sl@0: Output& aOut, sl@0: const TTestActionSpec& aTestActionSpec) sl@0: { sl@0: CCancelStart* self = CCancelStart::NewLC(aConsole, aOut, aTestActionSpec); sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: CCancelStart* CCancelStart::NewLC(CConsoleBase& aConsole, sl@0: Output& aOut, sl@0: const TTestActionSpec& aTestActionSpec) sl@0: { sl@0: CCancelStart* self = new(ELeave) CCancelStart(aConsole, aOut); sl@0: CleanupStack::PushL(self); sl@0: self->ConstructL(aTestActionSpec); sl@0: return self; sl@0: } sl@0: sl@0: CCancelStart::~CCancelStart() sl@0: { sl@0: } sl@0: sl@0: void CCancelStart::PerformAction(TRequestStatus& aStatus) sl@0: { sl@0: iTestHandler->SetTestRunnerL(new (ELeave) CCancelTestRunner(iOut)); sl@0: sl@0: TRequestStatus* status = &aStatus; sl@0: User::RequestComplete(status, KErrNone); sl@0: iResult = ETrue; sl@0: iFinished = ETrue; sl@0: iActionState = EPostrequisite; sl@0: } sl@0: sl@0: CCancelStart::CCancelStart(CConsoleBase& aConsole, sl@0: Output& aOut) sl@0: : CTestAction(aConsole, aOut) sl@0: { sl@0: } sl@0: sl@0: void CCancelStart::ConstructL(const TTestActionSpec& aTestActionSpec) sl@0: { sl@0: CTestAction::ConstructL(aTestActionSpec); sl@0: } sl@0: sl@0: void CCancelStart::DoReportAction() sl@0: { sl@0: iOut.writeString(_L("Starting cancellation test sequence...")); sl@0: iOut.writeNewLine(); sl@0: iOut.writeNewLine(); sl@0: } sl@0: sl@0: void CCancelStart::DoCheckResult(TInt /*aError*/) sl@0: { sl@0: } sl@0: sl@0: CCancelStop* CCancelStop::NewL(CConsoleBase& aConsole, sl@0: Output& aOut, sl@0: const TTestActionSpec& aTestActionSpec) sl@0: { sl@0: CCancelStop* self = CCancelStop::NewLC(aConsole, aOut, aTestActionSpec); sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: CCancelStop* CCancelStop::NewLC(CConsoleBase& aConsole, sl@0: Output& aOut, sl@0: const TTestActionSpec& aTestActionSpec) sl@0: { sl@0: CCancelStop* self = new(ELeave) CCancelStop(aConsole, aOut); sl@0: CleanupStack::PushL(self); sl@0: self->ConstructL(aTestActionSpec); sl@0: return self; sl@0: } sl@0: sl@0: CCancelStop::~CCancelStop() sl@0: { sl@0: } sl@0: sl@0: void CCancelStop::PerformAction(TRequestStatus& aStatus) sl@0: { sl@0: iTestHandler->SetTestRunnerL(NULL); sl@0: sl@0: TRequestStatus* status = &aStatus; sl@0: User::RequestComplete(status, KErrNone); sl@0: iResult = ETrue; sl@0: iFinished = ETrue; sl@0: iActionState = EPostrequisite; sl@0: } sl@0: sl@0: CCancelStop::CCancelStop(CConsoleBase& aConsole, sl@0: Output& aOut) sl@0: sl@0: : CTestAction(aConsole, aOut) sl@0: { sl@0: } sl@0: sl@0: void CCancelStop::ConstructL(const TTestActionSpec& aTestActionSpec) sl@0: { sl@0: CTestAction::ConstructL(aTestActionSpec); sl@0: } sl@0: sl@0: void CCancelStop::DoReportAction() sl@0: { sl@0: iOut.writeString(_L("Stopping cancel sequence...")); sl@0: iOut.writeNewLine(); sl@0: iOut.writeNewLine(); sl@0: } sl@0: sl@0: void CCancelStop::DoCheckResult(TInt /*aError*/) sl@0: { sl@0: }