@@ -53,7 +53,9 @@ class AVInputTest : public ::testing::Test {
53
53
54
54
Core::ProxyType<Plugin::AVInput> plugin;
55
55
Core::ProxyType<Plugin::AVInputImplementation> AVInputImpl;
56
- Core::ProxyType<WorkerPoolImplementation> workerPool;
56
+ // <pca> debug
57
+ // Core::ProxyType<WorkerPoolImplementation> workerPool;
58
+ // </pca>
57
59
58
60
NiceMock<COMLinkMock> comLinkMock;
59
61
NiceMock<ServiceMock> service;
@@ -85,12 +87,19 @@ class AVInputTest : public ::testing::Test {
85
87
IARM_EventHandler_t dsAVVideoModeEventHandler;
86
88
IARM_EventHandler_t dsAviContentTypeEventHandler;
87
89
90
+ // <pca> debug
91
+ // AVInputTest()
92
+ // : plugin(Core::ProxyType<Plugin::AVInput>::Create())
93
+ // , handler(*(plugin))
94
+ // , INIT_CONX(1, 0) , workerPool(Core::ProxyType<WorkerPoolImplementation>::Create(
95
+ // 2, Core::Thread::DefaultStackSize(), 16))
96
+ // {
88
97
AVInputTest ()
89
98
: plugin(Core::ProxyType<Plugin::AVInput>::Create())
90
99
, handler(*(plugin))
91
- , INIT_CONX(1 , 0 ) , workerPool(Core::ProxyType<WorkerPoolImplementation>::Create(
92
- 2 , Core::Thread::DefaultStackSize(), 16 ))
100
+ , INIT_CONX(1 , 0 )
93
101
{
102
+ // </pca>
94
103
printf (" *** _DEBUG: AVInputTest ctor: entry" );
95
104
96
105
p_serviceMock = new NiceMock <ServiceMock>;
@@ -228,8 +237,10 @@ class AVInputTest : public ::testing::Test {
228
237
#endif
229
238
// </pca>
230
239
231
- Core::IWorkerPool::Assign (&(*workerPool));
232
- workerPool->Run ();
240
+ // <pca> debug
241
+ // Core::IWorkerPool::Assign(&(*workerPool));
242
+ // workerPool->Run();
243
+ // </pca>
233
244
234
245
plugin->Initialize (&service);
235
246
@@ -248,8 +259,10 @@ class AVInputTest : public ::testing::Test {
248
259
TEST_LOG (" *** _DEBUG: AVInputTest xtor" );
249
260
plugin->Deinitialize (&service);
250
261
251
- Core::IWorkerPool::Assign (nullptr );
252
- workerPool.Release ();
262
+ // <pca> debug
263
+ // Core::IWorkerPool::Assign(nullptr);
264
+ // workerPool.Release();
265
+ // </pca>
253
266
254
267
if (p_serviceMock != nullptr )
255
268
{
0 commit comments