Update contrib.
2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "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".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
25 #include "t_testhandler.h"
26 #include "t_testrunner.h"
28 CCancelStart* CCancelStart::NewL(CConsoleBase& aConsole,
30 const TTestActionSpec& aTestActionSpec)
32 CCancelStart* self = CCancelStart::NewLC(aConsole, aOut, aTestActionSpec);
33 CleanupStack::Pop(self);
37 CCancelStart* CCancelStart::NewLC(CConsoleBase& aConsole,
39 const TTestActionSpec& aTestActionSpec)
41 CCancelStart* self = new(ELeave) CCancelStart(aConsole, aOut);
42 CleanupStack::PushL(self);
43 self->ConstructL(aTestActionSpec);
47 CCancelStart::~CCancelStart()
51 void CCancelStart::PerformAction(TRequestStatus& aStatus)
53 iTestHandler->SetTestRunnerL(new (ELeave) CCancelTestRunner(iOut));
55 TRequestStatus* status = &aStatus;
56 User::RequestComplete(status, KErrNone);
59 iActionState = EPostrequisite;
62 CCancelStart::CCancelStart(CConsoleBase& aConsole,
64 : CTestAction(aConsole, aOut)
68 void CCancelStart::ConstructL(const TTestActionSpec& aTestActionSpec)
70 CTestAction::ConstructL(aTestActionSpec);
73 void CCancelStart::DoReportAction()
75 iOut.writeString(_L("Starting cancellation test sequence..."));
80 void CCancelStart::DoCheckResult(TInt /*aError*/)
84 CCancelStop* CCancelStop::NewL(CConsoleBase& aConsole,
86 const TTestActionSpec& aTestActionSpec)
88 CCancelStop* self = CCancelStop::NewLC(aConsole, aOut, aTestActionSpec);
89 CleanupStack::Pop(self);
93 CCancelStop* CCancelStop::NewLC(CConsoleBase& aConsole,
95 const TTestActionSpec& aTestActionSpec)
97 CCancelStop* self = new(ELeave) CCancelStop(aConsole, aOut);
98 CleanupStack::PushL(self);
99 self->ConstructL(aTestActionSpec);
103 CCancelStop::~CCancelStop()
107 void CCancelStop::PerformAction(TRequestStatus& aStatus)
109 iTestHandler->SetTestRunnerL(NULL);
111 TRequestStatus* status = &aStatus;
112 User::RequestComplete(status, KErrNone);
115 iActionState = EPostrequisite;
118 CCancelStop::CCancelStop(CConsoleBase& aConsole,
121 : CTestAction(aConsole, aOut)
125 void CCancelStop::ConstructL(const TTestActionSpec& aTestActionSpec)
127 CTestAction::ConstructL(aTestActionSpec);
130 void CCancelStop::DoReportAction()
132 iOut.writeString(_L("Stopping cancel sequence..."));
137 void CCancelStop::DoCheckResult(TInt /*aError*/)