sl@0
|
1 |
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// Demonstrates a simple set of derived class implementations to
|
sl@0
|
15 |
// test the CTestController class using the test bed.
|
sl@0
|
16 |
// It may be used as a basis to develop a full test bed dll.
|
sl@0
|
17 |
// For support and comment please contact the authors.
|
sl@0
|
18 |
//
|
sl@0
|
19 |
//
|
sl@0
|
20 |
|
sl@0
|
21 |
#include "TestControllerUnitTest.h"
|
sl@0
|
22 |
#include "ComponentTester.h"
|
sl@0
|
23 |
|
sl@0
|
24 |
|
sl@0
|
25 |
// ______________________________________________________________________________
|
sl@0
|
26 |
//
|
sl@0
|
27 |
/**
|
sl@0
|
28 |
@internalComponent
|
sl@0
|
29 |
|
sl@0
|
30 |
Comments : Test the CTestController class.
|
sl@0
|
31 |
*/
|
sl@0
|
32 |
class CTestController_ComponentTest : public CComponentTester
|
sl@0
|
33 |
{
|
sl@0
|
34 |
public:
|
sl@0
|
35 |
/**
|
sl@0
|
36 |
@fn NewLC(CDataLogger& aDataLogger,
|
sl@0
|
37 |
MComponentTestObserver& aObserver)
|
sl@0
|
38 |
Intended Usage : Standard two-phase construction which leaves nothing on the
|
sl@0
|
39 |
cleanup stack.
|
sl@0
|
40 |
Error Condition : Leaves with the error code.
|
sl@0
|
41 |
@leave KErrNoMemory
|
sl@0
|
42 |
@since 7.0
|
sl@0
|
43 |
@param aDataLogger The output logging object.
|
sl@0
|
44 |
@param aObserver The observer of this component test.
|
sl@0
|
45 |
@return CTestController_ComponentTest* The constructed object.
|
sl@0
|
46 |
@pre None.
|
sl@0
|
47 |
@post CTestController_ComponentTest is fully constructed.
|
sl@0
|
48 |
*/
|
sl@0
|
49 |
static CTestController_ComponentTest* NewLC(CDataLogger& aDataLogger,
|
sl@0
|
50 |
MComponentTestObserver& aObserver);
|
sl@0
|
51 |
|
sl@0
|
52 |
private:
|
sl@0
|
53 |
/**
|
sl@0
|
54 |
@fn CTestController_ComponentTest(CDataLogger& aDataLogger,
|
sl@0
|
55 |
MComponentTestObserver& aObserver)
|
sl@0
|
56 |
Intended Usage : Standard c'tor method.
|
sl@0
|
57 |
Error Condition : None.
|
sl@0
|
58 |
@since 7.0
|
sl@0
|
59 |
@param aDataLogger The logging object.
|
sl@0
|
60 |
@param aObserver The observer of this component test.
|
sl@0
|
61 |
@pre None.
|
sl@0
|
62 |
@post CTestController_ComponentTest is fully constructed.
|
sl@0
|
63 |
*/
|
sl@0
|
64 |
inline CTestController_ComponentTest(CDataLogger& aDataLogger,
|
sl@0
|
65 |
MComponentTestObserver& aObserver);
|
sl@0
|
66 |
/**
|
sl@0
|
67 |
@fn void ConstructL()
|
sl@0
|
68 |
Intended Usage : Second phase of safe two phase construction,
|
sl@0
|
69 |
to complete the object initialisation.
|
sl@0
|
70 |
Error Condition : Leaves with an error code.
|
sl@0
|
71 |
@leave KErrNoMemory.
|
sl@0
|
72 |
@since 7.0
|
sl@0
|
73 |
@return None
|
sl@0
|
74 |
@pre CTestController_ComponentTest is fully constructed.
|
sl@0
|
75 |
@post CTestController_ComponentTest is fully initialised.
|
sl@0
|
76 |
*/
|
sl@0
|
77 |
inline void ConstructL();
|
sl@0
|
78 |
|
sl@0
|
79 |
}; // CTestController_ComponentTest
|
sl@0
|
80 |
|
sl@0
|
81 |
// ______________________________________________________________________________
|
sl@0
|
82 |
//
|
sl@0
|
83 |
inline CTestController_ComponentTest* CTestController_ComponentTest::NewLC(CDataLogger& aDataLogger, MComponentTestObserver& aObserver)
|
sl@0
|
84 |
{
|
sl@0
|
85 |
CTestController_ComponentTest* self = new (ELeave) CTestController_ComponentTest(aDataLogger, aObserver);
|
sl@0
|
86 |
CleanupStack::PushL(self);
|
sl@0
|
87 |
self->ConstructL();
|
sl@0
|
88 |
return self;
|
sl@0
|
89 |
}
|
sl@0
|
90 |
|
sl@0
|
91 |
inline CTestController_ComponentTest::CTestController_ComponentTest(CDataLogger& aDataLogger,
|
sl@0
|
92 |
MComponentTestObserver& aObserver)
|
sl@0
|
93 |
: CComponentTester(aDataLogger, aObserver)
|
sl@0
|
94 |
{
|
sl@0
|
95 |
// Do nothing here.
|
sl@0
|
96 |
}
|
sl@0
|
97 |
|
sl@0
|
98 |
inline void CTestController_ComponentTest::ConstructL()
|
sl@0
|
99 |
{
|
sl@0
|
100 |
// Perform base class initialization
|
sl@0
|
101 |
ComponentTesterConstructL();
|
sl@0
|
102 |
|
sl@0
|
103 |
AddUnitTestL(CTestController_CreateAndDestroy_UnitTest::NewL(iDataLogger, *this));
|
sl@0
|
104 |
AddUnitTestL(CTestController_FindTests_UnitTest::NewL(iDataLogger, *this));
|
sl@0
|
105 |
}
|
sl@0
|
106 |
|
sl@0
|
107 |
// ______________________________________________________________________________
|
sl@0
|
108 |
//
|
sl@0
|
109 |
EXPORT_C CComponentTester* NewComponentTestLC(CDataLogger& aDataLogger,
|
sl@0
|
110 |
MComponentTestObserver& aComponentTestObserver)
|
sl@0
|
111 |
{
|
sl@0
|
112 |
return CTestController_ComponentTest::NewLC(aDataLogger, aComponentTestObserver);
|
sl@0
|
113 |
}
|
sl@0
|
114 |
|
sl@0
|
115 |
|
sl@0
|
116 |
// ___________________________________________________________________________
|
sl@0
|
117 |
//
|
sl@0
|
118 |
// This section of the module simply includes the exported test harness template which
|
sl@0
|
119 |
// makes this a "whole" CPP file with a E32Main entry point below. The test MMP
|
sl@0
|
120 |
// project file can then produce a EXE for the test project instead of a DLL.
|
sl@0
|
121 |
|
sl@0
|
122 |
#include <ecom/test_bed/testharnesstemplate.h>
|
sl@0
|
123 |
|
sl@0
|
124 |
GLDEF_C TInt E32Main()
|
sl@0
|
125 |
{
|
sl@0
|
126 |
return E32Main_TestHarness(NewComponentTestLC);
|
sl@0
|
127 |
}
|
sl@0
|
128 |
|
sl@0
|
129 |
// ______________________________________________________________________________
|
sl@0
|
130 |
//
|
sl@0
|
131 |
class CTestController_ComponentTest_STUB : public CComponentTester
|
sl@0
|
132 |
{
|
sl@0
|
133 |
public:
|
sl@0
|
134 |
static CTestController_ComponentTest_STUB* NewLC(CDataLogger& aDataLogger, MComponentTestObserver& aObserver);
|
sl@0
|
135 |
|
sl@0
|
136 |
private:
|
sl@0
|
137 |
inline CTestController_ComponentTest_STUB(CDataLogger& aDataLogger, MComponentTestObserver& aObserver);
|
sl@0
|
138 |
inline void ConstructL();
|
sl@0
|
139 |
};
|
sl@0
|
140 |
|
sl@0
|
141 |
// ______________________________________________________________________________
|
sl@0
|
142 |
//
|
sl@0
|
143 |
inline CTestController_ComponentTest_STUB* CTestController_ComponentTest_STUB::NewLC(CDataLogger& aDataLogger, MComponentTestObserver& aObserver)
|
sl@0
|
144 |
{
|
sl@0
|
145 |
CTestController_ComponentTest_STUB* self = new (ELeave) CTestController_ComponentTest_STUB(aDataLogger, aObserver);
|
sl@0
|
146 |
CleanupStack::PushL(self);
|
sl@0
|
147 |
self->ConstructL();
|
sl@0
|
148 |
return self;
|
sl@0
|
149 |
}
|
sl@0
|
150 |
|
sl@0
|
151 |
inline CTestController_ComponentTest_STUB::CTestController_ComponentTest_STUB(CDataLogger& aDataLogger,
|
sl@0
|
152 |
MComponentTestObserver& aObserver)
|
sl@0
|
153 |
: CComponentTester(aDataLogger, aObserver)
|
sl@0
|
154 |
{
|
sl@0
|
155 |
// Do nothing here.
|
sl@0
|
156 |
}
|
sl@0
|
157 |
|
sl@0
|
158 |
/**
|
sl@0
|
159 |
@SYMTestCaseID SYSLIB-ECOM-CT-0780
|
sl@0
|
160 |
@SYMTestCaseDesc Tests for the implementations of CTransition class
|
sl@0
|
161 |
@SYMTestPriority High
|
sl@0
|
162 |
@SYMTestActions Tests for create and destroy,asynchronous,transit method operations
|
sl@0
|
163 |
@SYMTestExpectedResults Test must not fail
|
sl@0
|
164 |
@SYMREQ REQ0000
|
sl@0
|
165 |
*/
|
sl@0
|
166 |
inline void CTestController_ComponentTest_STUB::ConstructL()
|
sl@0
|
167 |
{
|
sl@0
|
168 |
// Perform base class initialization
|
sl@0
|
169 |
ComponentTesterConstructL();
|
sl@0
|
170 |
|
sl@0
|
171 |
AddUnitTestL(CTestController_CreateAndDestroy_UnitTest_STUB::NewL(iDataLogger, *this));
|
sl@0
|
172 |
}
|
sl@0
|
173 |
|
sl@0
|
174 |
// ______________________________________________________________________________
|
sl@0
|
175 |
//
|
sl@0
|
176 |
EXPORT_C CComponentTester* NewComponentTestLC_STUB(CDataLogger& aDataLogger,
|
sl@0
|
177 |
MComponentTestObserver& aComponentTestObserver)
|
sl@0
|
178 |
{
|
sl@0
|
179 |
|
sl@0
|
180 |
return CTestController_ComponentTest_STUB::NewLC(aDataLogger, aComponentTestObserver);
|
sl@0
|
181 |
}
|
sl@0
|
182 |
|