diff options
Diffstat (limited to 'cppe/test/IceE/operations/TestI.cpp')
-rw-r--r-- | cppe/test/IceE/operations/TestI.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/cppe/test/IceE/operations/TestI.cpp b/cppe/test/IceE/operations/TestI.cpp index dbd5615edf0..98e9d26da29 100644 --- a/cppe/test/IceE/operations/TestI.cpp +++ b/cppe/test/IceE/operations/TestI.cpp @@ -359,6 +359,17 @@ MyDerivedClassI::opContext(const Ice::Current& c) return c.ctx; } +void +MyDerivedClassI::opDoubleMarshaling(Ice::Double p1, const Test::DoubleS& p2, const Ice::Current&) +{ + Ice::Double d = 1278312346.0 / 13.0; + test(p1 == d); + for(unsigned int i = 0; i < p2.size(); ++i) + { + test(p2[i] == d); + } +} + void MyDerivedClassI::opDerived(const Ice::Current&) { |