diff options
author | Benoit Foucher <benoit@zeroc.com> | 2016-07-07 17:28:24 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2016-07-07 17:28:24 +0200 |
commit | 8e4713ead4275e26ef6351dc658bdfdfa2df4a90 (patch) | |
tree | c87762d7d11b5fb16d23d50f4fbd7d1fec7583e7 /python/test/Ice/optional/ServerAMD.py | |
parent | Updated build instructions (diff) | |
download | ice-8e4713ead4275e26ef6351dc658bdfdfa2df4a90.tar.bz2 ice-8e4713ead4275e26ef6351dc658bdfdfa2df4a90.tar.xz ice-8e4713ead4275e26ef6351dc658bdfdfa2df4a90.zip |
Added test for optional object dictionary parameters
Diffstat (limited to 'python/test/Ice/optional/ServerAMD.py')
-rwxr-xr-x | python/test/Ice/optional/ServerAMD.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/test/Ice/optional/ServerAMD.py b/python/test/Ice/optional/ServerAMD.py index 97ae0ce268e..b3b913304e4 100755 --- a/python/test/Ice/optional/ServerAMD.py +++ b/python/test/Ice/optional/ServerAMD.py @@ -130,6 +130,9 @@ class InitialI(Test.Initial): def opStringIntDict_async(self, cb, p1, current=None): cb.ice_response(p1, p1) + def opIntOneOptionalDict_async(self, cb, p1, current=None): + cb.ice_response(p1, p1) + def opClassAndUnknownOptional_async(self, cb, p, current=None): cb.ice_response() |