diff options
author | Bernard Normier <bernard@zeroc.com> | 2006-10-24 01:59:22 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2006-10-24 01:59:22 +0000 |
commit | d38dd2de23986dba846fae8454d60b6711b964b3 (patch) | |
tree | 41523b39de7512673f83e1e1831c62bf367cf99c /cpp/test/Ice/operations/AllTests.cpp | |
parent | changing archive name (diff) | |
download | ice-d38dd2de23986dba846fae8454d60b6711b964b3.tar.bz2 ice-d38dd2de23986dba846fae8454d60b6711b964b3.tar.xz ice-d38dd2de23986dba846fae8454d60b6711b964b3.zip |
ImplicitContext test and fixes
Diffstat (limited to 'cpp/test/Ice/operations/AllTests.cpp')
-rw-r--r-- | cpp/test/Ice/operations/AllTests.cpp | 15 |
1 files changed, 7 insertions, 8 deletions
diff --git a/cpp/test/Ice/operations/AllTests.cpp b/cpp/test/Ice/operations/AllTests.cpp index 0b241176635..14cee1c4b6e 100644 --- a/cpp/test/Ice/operations/AllTests.cpp +++ b/cpp/test/Ice/operations/AllTests.cpp @@ -15,8 +15,7 @@ using namespace std; Test::MyClassPrx -allTests(const Ice::CommunicatorPtr& communicator, - const Ice::InitializationData& initData, bool collocated) +allTests(const Ice::CommunicatorPtr& communicator, bool collocated) { cout << "testing stringToProxy... " << flush; string ref = "test:default -p 12010 -t 10000"; @@ -217,18 +216,18 @@ allTests(const Ice::CommunicatorPtr& communicator, } cout << "testing twoway operations... " << flush; - void twoways(const Ice::CommunicatorPtr&, const Ice::InitializationData&, const Test::MyClassPrx&); - twoways(communicator, initData, cl); - twoways(communicator, initData, derived); + void twoways(const Ice::CommunicatorPtr&, const Test::MyClassPrx&); + twoways(communicator, cl); + twoways(communicator, derived); derived->opDerived(); cout << "ok" << endl; if(!collocated) { cout << "testing twoway operations with AMI... " << flush; - void twowaysAMI(const Ice::CommunicatorPtr&, const Ice::InitializationData&, const Test::MyClassPrx&); - twowaysAMI(communicator, initData, cl); - twowaysAMI(communicator, initData, derived); + void twowaysAMI(const Ice::CommunicatorPtr&, const Test::MyClassPrx&); + twowaysAMI(communicator, cl); + twowaysAMI(communicator, derived); cout << "ok" << endl; cout << "testing batch oneway operations... " << flush; |