diff options
author | Benoit Foucher <benoit@zeroc.com> | 2018-02-01 17:16:04 +0100 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2018-02-01 17:16:04 +0100 |
commit | 46bfaab25c7c52112babf9321fcb8954f34f4010 (patch) | |
tree | 32fa30091ae0c61a5731dc026877744763c210e3 /csharp/test/Ice/proxy | |
parent | Fixed JS proxy test failure (diff) | |
download | ice-46bfaab25c7c52112babf9321fcb8954f34f4010.tar.bz2 ice-46bfaab25c7c52112babf9321fcb8954f34f4010.tar.xz ice-46bfaab25c7c52112babf9321fcb8954f34f4010.zip |
Added ice_fixed to generated Java proxy class, added test to check proxy return type from ice_fixed
Diffstat (limited to 'csharp/test/Ice/proxy')
-rw-r--r-- | csharp/test/Ice/proxy/AllTests.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/csharp/test/Ice/proxy/AllTests.cs b/csharp/test/Ice/proxy/AllTests.cs index 9d1d0e51914..456004f8f6a 100644 --- a/csharp/test/Ice/proxy/AllTests.cs +++ b/csharp/test/Ice/proxy/AllTests.cs @@ -815,7 +815,8 @@ public class AllTests : TestCommon.AllTests Ice.Connection connection = cl.ice_getConnection(); if(connection != null) { - cl.ice_fixed(connection).ice_ping(); + Test.MyClassPrx prx = (Test.MyClassPrx)cl.ice_fixed(connection); + prx.ice_ping(); test(cl.ice_secure(true).ice_fixed(connection).ice_isSecure()); test(cl.ice_facet("facet").ice_fixed(connection).ice_getFacet().Equals("facet")); test(cl.ice_oneway().ice_fixed(connection).ice_isOneway()); |