diff options
Diffstat (limited to 'csharp/test/Ice/seqMapping/AllTests.cs')
-rw-r--r-- | csharp/test/Ice/seqMapping/AllTests.cs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/csharp/test/Ice/seqMapping/AllTests.cs b/csharp/test/Ice/seqMapping/AllTests.cs index cabf73185b6..4b0f29cc4b3 100644 --- a/csharp/test/Ice/seqMapping/AllTests.cs +++ b/csharp/test/Ice/seqMapping/AllTests.cs @@ -7,12 +7,13 @@ // // ********************************************************************** -public class AllTests : TestCommon.TestApp +public class AllTests : TestCommon.AllTests { - public static Test.MyClassPrx allTests(Ice.Communicator communicator, bool collocated) + public static Test.MyClassPrx allTests(TestCommon.Application app, bool collocated) { + Ice.Communicator communicator = app.communicator(); Flush(); - string rf = "test:default -p 12010"; + string rf = "test:" + app.getTestEndpoint(0); Ice.ObjectPrx baseProxy = communicator.stringToProxy(rf); Test.MyClassPrx cl = Test.MyClassPrxHelper.checkedCast(baseProxy); |