summaryrefslogtreecommitdiff
path: root/csharp/test/Ice/enums/AllTests.cs
diff options
context:
space:
mode:
Diffstat (limited to 'csharp/test/Ice/enums/AllTests.cs')
-rw-r--r--csharp/test/Ice/enums/AllTests.cs7
1 files changed, 4 insertions, 3 deletions
diff --git a/csharp/test/Ice/enums/AllTests.cs b/csharp/test/Ice/enums/AllTests.cs
index 2204b4cbf23..9b3d16c9834 100644
--- a/csharp/test/Ice/enums/AllTests.cs
+++ b/csharp/test/Ice/enums/AllTests.cs
@@ -10,11 +10,12 @@
using System;
using Test;
-public class AllTests : TestCommon.TestApp
+public class AllTests : TestCommon.AllTests
{
- public static TestIntfPrx allTests(Ice.Communicator communicator)
+ public static TestIntfPrx allTests(TestCommon.Application app)
{
- string sref = "test:default -p 12010";
+ Ice.Communicator communicator = app.communicator();
+ string sref = "test:" + app.getTestEndpoint(0);
Ice.ObjectPrx obj = communicator.stringToProxy(sref);
test(obj != null);
TestIntfPrx proxy = TestIntfPrxHelper.uncheckedCast(obj);