Esempio n. 1
0
        public void reply_uri_when_durable()
        {
            var endpoint = new LocalQueueSettings("foo");

            endpoint.Mode = EndpointMode.Durable;

            endpoint.ReplyUri().ShouldBe("local://durable/foo".ToUri());
        }
Esempio n. 2
0
        public void replay_uri_when_not_durable()
        {
            var endpoint = new LocalQueueSettings("foo");

            endpoint.Mode = EndpointMode.BufferedInMemory;

            endpoint.ReplyUri().ShouldBe("local://foo".ToUri());
        }
        public void replay_uri_when_not_durable()
        {
            var endpoint = new LocalQueueSettings("foo");

            endpoint.IsDurable = false;

            endpoint.ReplyUri().ShouldBe("local://foo".ToUri());
        }