Example #1
0
 public override void Run(string[] args)
 {
     using var communicator = Initialize(ref args);
     AllTests.allTests(this, false).shutdown();
 }
Example #2
0
 private void Application_Startup(object sender, StartupEventArgs e)
 {
     TestCommon.TestApp app = new AllTests();
     app.main();
 }
Example #3
0
 private static int run(string[] args, Ice.Communicator communicator)
 {
     Test.MetricsPrx metrics = AllTests.allTests(communicator, _observer);
     metrics.shutdown();
     return(0);
 }
Example #4
0
 public override int run(string[] args)
 {
     AllTests.allTests(this);
     return(0);
 }
Example #5
0
    private static int run(string[] args, Ice.Communicator communicator)
    {
        AllTests.allTests(communicator);

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