diff options
author | Jose <jose@zeroc.com> | 2018-07-20 19:19:30 +0200 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2018-07-20 19:19:30 +0200 |
commit | f831849a119aa592d207fd38428517b414c2b39d (patch) | |
tree | 88c4d1c69072ad45eda621079f0d1d8b89a1fd8e /csharp/test/Ice/acm/Client.cs | |
parent | Update Travis CI build to use ubuntu-18.04 (diff) | |
download | ice-f831849a119aa592d207fd38428517b414c2b39d.tar.bz2 ice-f831849a119aa592d207fd38428517b414c2b39d.tar.xz ice-f831849a119aa592d207fd38428517b414c2b39d.zip |
Xamarin testsuite
Diffstat (limited to 'csharp/test/Ice/acm/Client.cs')
-rw-r--r-- | csharp/test/Ice/acm/Client.cs | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/csharp/test/Ice/acm/Client.cs b/csharp/test/Ice/acm/Client.cs index 181eff97acd..14776a3a372 100644 --- a/csharp/test/Ice/acm/Client.cs +++ b/csharp/test/Ice/acm/Client.cs @@ -7,29 +7,29 @@ // // ********************************************************************** -using System; -using System.Reflection; +using Test; -[assembly: CLSCompliant(true)] - -[assembly: AssemblyTitle("IceTest")] -[assembly: AssemblyDescription("Ice test")] -[assembly: AssemblyCompany("ZeroC, Inc.")] - -public class Client : Test.TestHelper +namespace Ice { - override public void run(string[] args) + namespace acm { - Ice.Properties properties = createTestProperties(ref args); - properties.setProperty("Ice.Warn.Connections", "0"); - using(var communicator = initialize(properties)) + public class Client : TestHelper { - AllTests.allTests(this); - } - } + override public void run(string[] args) + { + var properties = createTestProperties(ref args); + properties.setProperty("Ice.Package.Test", "Ice.acm"); + properties.setProperty("Ice.Warn.Connections", "0"); + using(var communicator = initialize(properties)) + { + AllTests.allTests(this); + } + } - public static int Main(string[] args) - { - return Test.TestDriver.runTest<Client>(args); + public static int Main(string[] args) + { + return TestDriver.runTest<Client>(args); + } + } } } |