diff options
Diffstat (limited to 'python/test/Ice/operations/TestI.py')
-rw-r--r-- | python/test/Ice/operations/TestI.py | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/python/test/Ice/operations/TestI.py b/python/test/Ice/operations/TestI.py index fc1d3e8bb1e..287985df157 100644 --- a/python/test/Ice/operations/TestI.py +++ b/python/test/Ice/operations/TestI.py @@ -2,12 +2,22 @@ # Copyright (c) ZeroC, Inc. All rights reserved. # -import Ice, Test, sys, threading +import Ice, Test, M, sys, threading def test(b): if not b: raise RuntimeError('test assertion failed') + +class BI(M.BDisp): + + def opB(self, current=None): + pass + + def opIntf(self, current=None): + pass + + class MyDerivedClassI(Test.MyDerivedClass): def __init__(self): self.lock = threading.Lock() |