-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
27 lines (26 loc) · 830 Bytes
/
Program.cs
File metadata and controls
27 lines (26 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
using MessageService.Test.Core;
using MessageService.Test.Core.Middleware;
using System;
namespace MessageService.Test
{
public class Program
{
[STAThread]
static void Main()
{
var test = new ServiceBusTest();
test.Setup();
test.Bus_Start_Stop_with_Components();
//test.Bus_bind_test();
//test.MultiMessage_with_same_invoker_test();
//test.Send_Message_with_full_paras_and_single_thread();
// test.Receive_Message() ;
// test.Endpoint_send_test();
// test.Send_Message_with_full_paras_and_mulit_thread();
// test.Receive_message_test();
// test.Validate_contract_test();
Console.WriteLine("not waiting");
Console.Read();
}
}
}