Update contrib.
1 // Copyright (c) 2001-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.
14 // Demonstrates a simple set of derived class implementations to
15 // test the CTransition class using the test bed.
16 // It may be used as a basis to develop a full test bed dll.
17 // For support and comment please contact the authors.
21 #include "TransitionUnitTest.h"
22 #include "ComponentTester.h"
24 RTest test(_L("TransitionTest.cpp"));
26 // ______________________________________________________________________________
31 Comments : Test the CTransition class.
33 class CTransition_ComponentTest : public CComponentTester
37 @fn NewLC(CDataLogger& aDataLogger,
38 MComponentTestObserver& aObserver)
39 Intended Usage : Standard two-phase construction which leaves nothing on the
41 Error Condition : Leaves with the error code.
44 @param aDataLogger The output logging object.
45 @param aObserver The observer of this component test.
46 @return CTransition_ComponentTest* The constructed object.
48 @post CTransition_ComponentTest is fully constructed.
50 static CTransition_ComponentTest* NewLC(CDataLogger& aDataLogger,
51 MComponentTestObserver& aObserver);
55 @fn CTransition_ComponentTest(CDataLogger& aDataLogger,
56 MComponentTestObserver& aObserver)
57 Intended Usage : Standard c'tor method.
58 Error Condition : None.
60 @param aDataLogger The logging object.
61 @param aObserver The observer of this component test.
63 @post CTransition_ComponentTest is fully constructed.
65 inline CTransition_ComponentTest(CDataLogger& aDataLogger,
66 MComponentTestObserver& aObserver);
69 Intended Usage : Second phase of safe two phase construction,
70 to complete the object initialisation.
71 Error Condition : Leaves with an error code.
75 @pre CTransition_ComponentTest is fully constructed.
76 @post CTransition_ComponentTest is fully initialised.
78 inline void ConstructL();
80 }; // CTransition_ComponentTest
82 // ______________________________________________________________________________
84 inline CTransition_ComponentTest* CTransition_ComponentTest::NewLC(CDataLogger& aDataLogger, MComponentTestObserver& aObserver)
86 CTransition_ComponentTest* self = new (ELeave) CTransition_ComponentTest(aDataLogger, aObserver);
87 CleanupStack::PushL(self);
92 inline CTransition_ComponentTest::CTransition_ComponentTest(CDataLogger& aDataLogger,
93 MComponentTestObserver& aObserver)
94 : CComponentTester(aDataLogger, aObserver)
100 @SYMTestCaseID SYSLIB-ECOM-CT-0779
101 @SYMTestCaseDesc Tests for the implementations of CTransition class
102 @SYMTestPriority High
103 @SYMTestActions Tests for create and destroy,asynchronous,transit method operations
104 @SYMTestExpectedResults Test must not fail
107 inline void CTransition_ComponentTest::ConstructL()
109 // Perform base class initialization
110 ComponentTesterConstructL();
112 AddUnitTestL(CTransition_CreateAndDestroy_UnitTest::NewL(iDataLogger, *this));
113 AddUnitTestL(CTransition_TransitMethodL_UnitTest::NewL(iDataLogger, *this));
114 AddUnitTestL(CTransition_AsyncOperation_UnitTest::NewL(iDataLogger, *this));
117 // ______________________________________________________________________________
119 EXPORT_C CComponentTester* NewComponentTestLC(CDataLogger& aDataLogger,
120 MComponentTestObserver& aComponentTestObserver)
122 return CTransition_ComponentTest::NewLC(aDataLogger, aComponentTestObserver);
125 // ___________________________________________________________________________
127 // This section of the module simply includes the exported test harness template which
128 // makes this a "whole" CPP file with a E32Main entry point below. The test MMP
129 // project file can then produce a EXE for the test project instead of a DLL.
131 #include <ecom/test_bed/testharnesstemplate.h>
133 GLDEF_C TInt E32Main()
136 test.Start(_L(" @SYMTestCaseID:SYSLIB-ECOM-CT-0779 "));
141 return E32Main_TestHarness(NewComponentTestLC);