diff options
Diffstat (limited to 'python/test/Ice/objects/AllTests.py')
-rw-r--r-- | python/test/Ice/objects/AllTests.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/python/test/Ice/objects/AllTests.py b/python/test/Ice/objects/AllTests.py index b8dde23b1b4..2ddefafb01b 100644 --- a/python/test/Ice/objects/AllTests.py +++ b/python/test/Ice/objects/AllTests.py @@ -111,6 +111,13 @@ def allTests(helper, communicator): test(isinstance(h, Test.H)) print("ok") + sys.stdout.write("getting K... ") + sys.stdout.flush() + k = initial.getK() + test(isinstance(k.value, Test.L)) + test(k.value.data == "l") + print("ok") + sys.stdout.write("getting D1... ") sys.stdout.flush() d1 = initial.getD1(Test.D1(Test.A1("a1"), Test.A1("a2"), Test.A1("a3"), Test.A1("a4"))) |