Apache.NMS.ActiveMQ.Test.SimplePriorityMessageDispatchChannelTest.TestStop C# (CSharp) Method

TestStop() private method

private TestStop ( ) : void
return void
        public void TestStop()
        {
            SimplePriorityMessageDispatchChannel channel = new SimplePriorityMessageDispatchChannel();
            channel.Start();
            Assert.IsTrue( channel.Running == true );
            channel.Stop();
            Assert.IsTrue( channel.Running == false );
        }