diff options
Diffstat (limited to 'csharp/test/Ice/namespacemd/Client.cs')
-rw-r--r-- | csharp/test/Ice/namespacemd/Client.cs | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/csharp/test/Ice/namespacemd/Client.cs b/csharp/test/Ice/namespacemd/Client.cs new file mode 100644 index 00000000000..397a2e261ec --- /dev/null +++ b/csharp/test/Ice/namespacemd/Client.cs @@ -0,0 +1,35 @@ +// ********************************************************************** +// +// 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 Test; + +namespace Ice +{ + namespace namespacemd + { + public class Client : TestHelper + { + override public void run(string[] args) + { + var properties = createTestProperties(ref args); + properties.setProperty("Ice.Warn.Dispatch", "0"); + using(var communicator = initialize(properties)) + { + var initial = AllTests.allTests(this); + initial.shutdown(); + } + } + + public static int Main(string[] args) + { + return TestDriver.runTest<Client>(args); + } + } + } +} |