コード例 #1
0
ファイル: HelloWorld.cs プロジェクト: nui-dali/nui-demo
    [STAThread] // Forces app to use one thread to access NUI
    static void Main(string[] args)
    {
        // Do not remove this print out - helps with the TizenFX stub sync issue
        Console.WriteLine("Running Example...");
        HelloWorldExample example = new HelloWorldExample();

        example.Run(args);
    }
コード例 #2
0
ファイル: Program.cs プロジェクト: PragmaticFlow/NBomber
 static void Main(string[] args)
 {
     HelloWorldExample.Run();
     // ClientDistributionExample.Run();
     // CustomStepExecControlExample.Run();
     // DataFeedTest.Run();
     // CustomReportingExample.Run();
     // CustomSettingsExample.Run();
 }
コード例 #3
0
ファイル: Program.cs プロジェクト: timba/NBomber
        static void Main(string[] args)
        {
            //DataFeed.DataFeedTest.Run();

            HelloWorldExample.Run();
            //HelloWorld.CustomSettingsExample.Run();

            //HttpTests.SimpleHttpTest.Run();
            //HttpTests.AdvancedHttpTest.Run();
            //HttpTests.AdvancedHttpWithConfig.Run();
            //HttpTests.TracingHttp.Run();

            //Logging.ElasticSearchLogging.Run();

            //MongoDb.MongoDbTest.Run();

            //RealtimeReporting.InfluxDbReporting.Run();
        }
コード例 #4
0
    [STAThread] // Forces app to use one thread to access NUI
    static void Main(string[] args)
    {
        HelloWorldExample example = new HelloWorldExample();

        example.Run(args);
    }
コード例 #5
0
 static void Main(string[] args)
 {
     HelloWorldExample.Run();
 }