diff options
Diffstat (limited to 'python/test/Ice/optional/Server.py')
-rwxr-xr-x | python/test/Ice/optional/Server.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/python/test/Ice/optional/Server.py b/python/test/Ice/optional/Server.py index 106fe5182eb..c865c37b1c3 100755 --- a/python/test/Ice/optional/Server.py +++ b/python/test/Ice/optional/Server.py @@ -147,6 +147,30 @@ class InitialI(Test.Initial): def opVoid(self, current=None): pass + def opMStruct1(self, current): + return Test.SmallStruct() + + def opMStruct2(self, p1, current): + return (p1, p1) + + def opMSeq1(self, current): + return [] + + def opMSeq2(self, p1, current): + return (p1, p1) + + def opMDict1(self, current): + return {} + + def opMDict2(self, p1, current): + return (p1, p1) + + def opMG1(self, current): + return Test.G() + + def opMG2(self, p1, current): + return (p1, p1) + def supportsRequiredParams(self, current=None): return False |