diff options
author | Dwayne Boone <dwayne@zeroc.com> | 2015-01-06 11:21:38 -0330 |
---|---|---|
committer | Dwayne Boone <dwayne@zeroc.com> | 2015-01-06 11:21:38 -0330 |
commit | 351e5741cfb37030e3da09066567844a6803ada4 (patch) | |
tree | f95267ab4af094032271112ee4a6852b058856ca /cpp/test/Ice/ami/TestI.cpp | |
parent | ICE-6216 gradle plugin uses iceHome to locate slice compilers (diff) | |
download | ice-351e5741cfb37030e3da09066567844a6803ada4.tar.bz2 ice-351e5741cfb37030e3da09066567844a6803ada4.tar.xz ice-351e5741cfb37030e3da09066567844a6803ada4.zip |
ICE-6253 added tests to ensure Functional_TwowayCallback* used
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) { } |