Exemplo n.º 1
0
        public void queue_is_created()
        {
            _context.Sender.Send(new TransportMessage(), new SendOptions(_context.Address));

            Assert.IsTrue(_context.MyQueueExists());
        }
        public void creating_queue_works()
        {
            Assert.DoesNotThrow(() => _context.CreateQueue());

            Assert.IsTrue(_context.MyQueueExists());
        }