diff options
Diffstat (limited to 'cpp/test/Ice/ami/TestI.cpp')
-rw-r--r-- | cpp/test/Ice/ami/TestI.cpp | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/cpp/test/Ice/ami/TestI.cpp b/cpp/test/Ice/ami/TestI.cpp index a29b3699294..e418621289d 100644 --- a/cpp/test/Ice/ami/TestI.cpp +++ b/cpp/test/Ice/ami/TestI.cpp @@ -98,18 +98,24 @@ TestIntfI::shutdown(const Ice::Current& current) current.adapter->getCommunicator()->shutdown(); } +bool +TestIntfI::supportsFunctionalTests(const Ice::Current&) +{ + return false; +} + void TestIntfControllerI::holdAdapter(const Ice::Current&) { _adapter->hold(); } - + void TestIntfControllerI::resumeAdapter(const Ice::Current&) { _adapter->activate(); } - + TestIntfControllerI::TestIntfControllerI(const Ice::ObjectAdapterPtr& adapter) : _adapter(adapter) { } |