diff options
author | Jose <jose@zeroc.com> | 2018-06-01 17:41:03 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2018-06-01 17:41:03 +0200 |
commit | cbe92e540a7f02f0bdf93192424bd119189365b7 (patch) | |
tree | 411c50dc0ae9c669d31a940b1b4903b5deac4f12 /csharp/test/Ice/inheritance/AllTests.cs | |
parent | Fixed Util.py check for binary installation directory on Windows (diff) | |
download | ice-cbe92e540a7f02f0bdf93192424bd119189365b7.tar.bz2 ice-cbe92e540a7f02f0bdf93192424bd119189365b7.tar.xz ice-cbe92e540a7f02f0bdf93192424bd119189365b7.zip |
Do not use Ice::Application for Ice testsuite
Diffstat (limited to 'csharp/test/Ice/inheritance/AllTests.cs')
-rw-r--r-- | csharp/test/Ice/inheritance/AllTests.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/csharp/test/Ice/inheritance/AllTests.cs b/csharp/test/Ice/inheritance/AllTests.cs index 23504ce4f70..5cb00bb866a 100644 --- a/csharp/test/Ice/inheritance/AllTests.cs +++ b/csharp/test/Ice/inheritance/AllTests.cs @@ -9,14 +9,14 @@ using Test; -public class AllTests : TestCommon.AllTests +public class AllTests : Test.AllTests { - public static InitialPrx allTests(TestCommon.Application app) + public static InitialPrx allTests(Test.TestHelper helper) { - Ice.Communicator communicator = app.communicator(); + Ice.Communicator communicator = helper.communicator(); Write("testing stringToProxy... "); Flush(); - string ref_Renamed = "initial:" + app.getTestEndpoint(0); + string ref_Renamed = "initial:" + helper.getTestEndpoint(0); Ice.ObjectPrx @base = communicator.stringToProxy(ref_Renamed); test(@base != null); WriteLine("ok"); |