예제 #1
0
파일: Client.cs 프로젝트: yuwenyong/ice
 public override void Run(string[] args)
 {
     using var communicator = Initialize(ref args);
     AllTests.allTests(this, false).shutdown();
 }
예제 #2
0
파일: App.xaml.cs 프로젝트: pedia/zeroc-ice
 private void Application_Startup(object sender, StartupEventArgs e)
 {
     TestCommon.TestApp app = new AllTests();
     app.main();
 }
예제 #3
0
 private static int run(string[] args, Ice.Communicator communicator)
 {
     Test.MetricsPrx metrics = AllTests.allTests(communicator, _observer);
     metrics.shutdown();
     return(0);
 }
예제 #4
0
파일: Client.cs 프로젝트: skyhack1212/ice-1
 public override int run(string[] args)
 {
     AllTests.allTests(this);
     return(0);
 }
예제 #5
0
    private static int run(string[] args, Ice.Communicator communicator)
    {
        AllTests.allTests(communicator);

        return(0);
    }
예제 #6
0
 private static int run(String[] args, Ice.Communicator communicator)
 {
     Test.MyClassPrx myClass = AllTests.allTests(communicator);
     myClass.shutdown();
     return(0);
 }
예제 #7
0
 public override void run(string[] args)
 {
     using var communicator = initialize(createTestProperties(ref args),
                                         typeIdNamespaces: new string[] { "Ice.stream.TypeId" });
     AllTests.allTests(this);
 }
예제 #8
0
파일: Client.cs 프로젝트: yiqideren/ice
 public static int run(string[] args, Ice.Communicator communicator)
 {
     Test.TimeoutPrx timeout = AllTests.allTests(communicator);
     timeout.shutdown();
     return(0);
 }
예제 #9
0
 private void Application_Startup(object sender, StartupEventArgs e)
 {
     TestCommon.TestApp app = new AllTests();
     app.main();
 }
예제 #10
0
파일: Client.cs 프로젝트: zxh1986123/ice
 public override int run(string[] args)
 {
     Test.MetricsPrx metrics = AllTests.allTests(this, _observer);
     metrics.shutdown();
     return(0);
 }
예제 #11
0
파일: Client.cs 프로젝트: wubo2018/ice
 public override async Task RunAsync(string[] args)
 {
     await using Communicator communicator = Initialize(ref args);
     await AllTests.Run(this).ShutdownAsync();
 }