diff options
Diffstat (limited to 'cpp/test/Ice/operations/AllTests.cpp')
-rw-r--r-- | cpp/test/Ice/operations/AllTests.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/cpp/test/Ice/operations/AllTests.cpp b/cpp/test/Ice/operations/AllTests.cpp index 799560a8d5d..1c89beb032e 100644 --- a/cpp/test/Ice/operations/AllTests.cpp +++ b/cpp/test/Ice/operations/AllTests.cpp @@ -29,6 +29,11 @@ allTests(const Ice::CommunicatorPtr& communicator, bool collocated) derived->opDerived(); cout << "ok" << endl; + cout << "testing oneway operations... " << flush; + void oneways(const Ice::CommunicatorPtr&, const Test::MyClassPrx&); + oneways(communicator, cl); + cout << "ok" << endl; + if(!collocated) { cout << "testing twoway operations with AMI... " << flush; @@ -37,6 +42,11 @@ allTests(const Ice::CommunicatorPtr& communicator, bool collocated) twowaysAMI(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 batch oneway operations... " << flush; void batchOneways(const Test::MyClassPrx&); batchOneways(cl); |