Ejemplo n.º 1
0
        public void TcpBinaryServerChannelDoesntReturn0000AsDiscoverableUrl()
        {
            var proto = new TcpBinaryServerProtocolSetup(12347);
            var url   = proto.GetDiscoverableUrl("SomeServer");

            Assert.IsFalse(string.IsNullOrEmpty(url));
            Assert.AreNotEqual("tcp://0.0.0.0:12347/SomeServer", url);
        }