示例#1
0
		static void RunLocalActiveMqLoadTest()
		{
			var stopWatch = new StopWatch();

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

			Console.WriteLine("ActiveMQ Load Test: ");
			Console.WriteLine(stopWatch.ToString());
			Console.WriteLine();
		}
示例#2
0
        private static void RunLocalActiveMqLoadTest()
        {
            StopWatch stopWatch = new StopWatch();

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

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