예제 #1
0
        private static void RunContainerLoadTest()
        {
            Console.WriteLine("Starting Local MSMQ Container Load Test");
            StopWatch stopWatch = new StopWatch();

            using (ContainerLoadTest test = new ContainerLoadTest())
            {
                test.Run(stopWatch);
            }

            Console.WriteLine("Container Load Test: ");
            Console.WriteLine(stopWatch.ToString());
            Console.WriteLine();
        }
예제 #2
0
파일: Program.cs 프로젝트: KevM/MassTransit
		private static void RunContainerLoadTest()
        {
            Console.WriteLine("Starting Local MSMQ Container Load Test");
			StopWatch stopWatch = new StopWatch();

			using (ContainerLoadTest test = new ContainerLoadTest())
			{
				test.Run(stopWatch);
			}

			Console.WriteLine("Container Load Test: ");
            Console.WriteLine(stopWatch.ToString());
            Console.WriteLine();
		}