Example #1
0
        public void cant_get_a_message_twice_even_if_its_not_finished()
        {
            Assert.That(subject.Get("dst", out var tag1), Is.EqualTo("Hello"));
            Assert.That(subject.Get("dst", out _), Is.Null);

            subject.Finish(tag1.DeliveryTag);
        }