summaryrefslogtreecommitdiff
path: root/csharp/test/Ice/packagemd/Client.cs
diff options
context:
space:
mode:
Diffstat (limited to 'csharp/test/Ice/packagemd/Client.cs')
-rw-r--r--csharp/test/Ice/packagemd/Client.cs38
1 files changed, 38 insertions, 0 deletions
diff --git a/csharp/test/Ice/packagemd/Client.cs b/csharp/test/Ice/packagemd/Client.cs
new file mode 100644
index 00000000000..b7897cfff2b
--- /dev/null
+++ b/csharp/test/Ice/packagemd/Client.cs
@@ -0,0 +1,38 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2018 ZeroC, Inc. All rights reserved.
+//
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
+//
+// **********************************************************************
+
+using System;
+using System.Reflection;
+
+[assembly: CLSCompliant(true)]
+
+[assembly: AssemblyTitle("IceTest")]
+[assembly: AssemblyDescription("Ice test")]
+[assembly: AssemblyCompany("ZeroC, Inc.")]
+
+public class Client : Test.TestHelper
+{
+ override public void run(string[] args)
+ {
+ Ice.Properties properties = createTestProperties(ref args);
+ properties.setProperty("Ice.Warn.Dispatch", "0");
+ properties.setProperty("Ice.Package.Test", "test.Ice.packagemd");
+ properties.setProperty("Ice.Package.Test1", "test.Ice.packagemd");
+ using (var communicator = initialize(properties))
+ {
+ var initial = AllTests.allTests(this);
+ initial.shutdown();
+ }
+ }
+
+ public static int Main(string[] args)
+ {
+ return Test.TestDriver.runTest<Client>(args);
+ }
+}