diff options
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; |