os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/TestManagerTest/TestManagerObserverStub.cpp
First public contribution.
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
18 #include "TestManagerObserverStub.h"
20 // ______________________________________________________________________________
22 CTestManagerObserverStub* CTestManagerObserverStub::NewL()
24 CTestManagerObserverStub* self= NewLC(); // calls c'tor and ConstructL
25 CleanupStack::Pop(); // removes self
29 CTestManagerObserverStub* CTestManagerObserverStub::NewLC()
31 CTestManagerObserverStub* self=new(ELeave) CTestManagerObserverStub(); // calls c'tor
32 CleanupStack::PushL(self); // Make the construction safe by using the cleanup stack
33 self->ConstructL(); // Complete the 'construction'.
37 CTestManagerObserverStub::~CTestManagerObserverStub()
42 CTestManagerObserverStub::CTestManagerObserverStub()
45 // Deliberately do nothing here : See ConstructL() for initialisation completion.
48 void CTestManagerObserverStub::ConstructL()
53 void CTestManagerObserverStub::TestsComplete()
57 CActiveScheduler::Stop();
61 void CTestManagerObserverStub::SetSchedulerStarted(TBool aSchedulerStarted)
63 iSchedulerStarted = aSchedulerStarted;