BridgeTests.Tests.TestDestination.TestDestinationTypeWhereNoQueueIsIndicated C# (CSharp) Метод

TestDestinationTypeWhereNoQueueIsIndicated() приватный Метод

private TestDestinationTypeWhereNoQueueIsIndicated ( ) : void
Результат void
        public void TestDestinationTypeWhereNoQueueIsIndicated()
        {
            JmsDestination destination = new JmsDestination(Url + "?");

            Assert.AreEqual<String>(destination.Host, Url);
            Assert.IsTrue(String.IsNullOrEmpty(destination.Queue));
            Assert.AreEqual<String>(destination.FullDestination, Url);
        }