diff options
Diffstat (limited to 'python/test/Ice/objects/TestI.py')
-rw-r--r-- | python/test/Ice/objects/TestI.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/python/test/Ice/objects/TestI.py b/python/test/Ice/objects/TestI.py index 921f5d8b485..e28c882a1bf 100644 --- a/python/test/Ice/objects/TestI.py +++ b/python/test/Ice/objects/TestI.py @@ -193,6 +193,19 @@ class InitialI(Test.Initial): def opM(self, m, current=None): return (m, m) + def opF1(self, f11, current=None): + return (f11, Test.F1("F12")) + + def opF2(self, f21, current=None): + return (f21, current.adapter.getCommunicator().stringToProxy("F22")) + + def opF3(self, f31, current): + return (f31, Test.F3(Test.F1("F12"), current.adapter.getCommunicator().stringToProxy("F22"))) + + def hasF3(self, current): + return True + + class UnexpectedObjectExceptionTestI(Test.UnexpectedObjectExceptionTest): def op(self, current=None): return Test.AlsoEmpty() |