Example #1
0
        private static void RunTransactionLoadTest()
        {
            Console.WriteLine("Starting Local MSMQ Transactional Load Test");
            StopWatch stopWatch = new StopWatch();

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

            Console.WriteLine("Transaction Load Test: ");
            Console.WriteLine(stopWatch.ToString());
            Console.WriteLine();
        }
Example #2
0
		static void RunTransactionLoadTest()
		{
			Console.WriteLine("Starting Local MSMQ Transactional Load Test");
			var stopWatch = new StopWatch();

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

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