diff options
author | Jose <jose@zeroc.com> | 2014-09-24 21:06:55 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2014-09-24 21:06:55 +0200 |
commit | b1087d646fa93c4208dd227d0c9df323ff7c858b (patch) | |
tree | 48532138bffdfac0dc5c818593d9c1958cfeeeb5 /cpp/test/Ice/operations/AllTests.cpp | |
parent | PHP dependency fixes (diff) | |
download | ice-b1087d646fa93c4208dd227d0c9df323ff7c858b.tar.bz2 ice-b1087d646fa93c4208dd227d0c9df323ff7c858b.tar.xz ice-b1087d646fa93c4208dd227d0c9df323ff7c858b.zip |
Fixed (ICE-5511) - Consider removing the deprecated AMI mapping
Diffstat (limited to 'cpp/test/Ice/operations/AllTests.cpp')
-rw-r--r-- | cpp/test/Ice/operations/AllTests.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/cpp/test/Ice/operations/AllTests.cpp b/cpp/test/Ice/operations/AllTests.cpp index 62ca357166d..e81186f18f4 100644 --- a/cpp/test/Ice/operations/AllTests.cpp +++ b/cpp/test/Ice/operations/AllTests.cpp @@ -40,22 +40,11 @@ allTests(const Ice::CommunicatorPtr& communicator) twowaysAMI(communicator, derived); cout << "ok" << endl; - cout << "testing twoway operations with new AMI mapping... " << flush; - void twowaysNewAMI(const Ice::CommunicatorPtr&, const Test::MyClassPrx&); - twowaysNewAMI(communicator, cl); - twowaysNewAMI(communicator, derived); - cout << "ok" << endl; - cout << "testing oneway operations with AMI... " << flush; void onewaysAMI(const Ice::CommunicatorPtr&, const Test::MyClassPrx&); onewaysAMI(communicator, cl); cout << "ok" << endl; - cout << "testing oneway operations with new AMI mapping... " << flush; - void onewaysNewAMI(const Ice::CommunicatorPtr&, const Test::MyClassPrx&); - onewaysNewAMI(communicator, cl); - cout << "ok" << endl; - cout << "testing batch oneway operations... " << flush; void batchOneways(const Test::MyClassPrx&); batchOneways(cl); |