Update contrib.
1 // Copyright (c) 2005-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.
16 #ifndef __TEST_HARNESS_DOMAIN_MEMBER_H__
17 #define __TEST_HARNESS_DOMAIN_MEMBER_H__
20 #include <domainmember.h>
24 Test version of CDmDomain defined in domainmember.h
25 An class for interfacing to a domain managed by
26 the domain manager or the test harness depending on whether
27 __ECOM_SERVER_TESTABILITY__ macro is defined or not.
28 This class acts either as a dummy intermediate class which
29 passes all the calls directly to the base class CDmDomain or
30 a class which blocks all the calls to the CDmDomain. The
31 behaviour is defined based on the existence of
32 KIniEcomTestBehaviourFileName
34 class CDmDomainTestHarness : public CDmDomain
37 CDmDomainTestHarness(TDmHierarchyId aHierarchyId, TDmDomainId aDomainId);
38 ~CDmDomainTestHarness();
40 void RequestTransitionNotificationL();
41 void AcknowledgeLastStateL(TInt aError);
42 TDmDomainState GetState();
43 void ChangeStartupStateL(TInt aState);
45 void ResetRequestTransitionNotificationL();
46 TBool IsTransitionNotificationRequestedL();
47 void ResetLastStateAcknowledgedL();
48 TBool IsLastStateAcknowledgedL();
49 TBool IsRequestNotificationCancelledL();
56 TBool IsTestBehaviour();
58 TBool iIsLastStateAcknowledged;
60 TInt iIsTestBehaviour;
62 TBool iIsRequestCancelled;
65 #endif //__TEST_HARNESS_DOMAIN_MEMBER_H__