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

            Assert.IsTrue(_context.MyQueueExists());
        }
        public void FixtureSetUp()
        {
            _context = new SqsTestContext(this);
			_context.CreateQueue();
			_context.InitAndStartDequeueing();
        }
 public void FixtureSetUp()
 {
     _context = new SqsTestContext(this);
     _context.CreateQueue();
     _context.InitAndStartDequeueing();
 }