public async Task GetNamespaceProperties()
        {
            var client = new ServiceBusManagementClient(TestEnvironment.ServiceBusConnectionString);

            NamespaceProperties nsInfo = await client.GetNamespacePropertiesAsync();

            Assert.NotNull(nsInfo);
            // Assert.AreEqual(MessagingSku.Standard, nsInfo.MessagingSku);    // Most CI systems generally use standard, hence this check just to ensure the API is working.
            Assert.AreEqual(NamespaceType.Messaging, nsInfo.NamespaceType); // Common namespace type used for testing is messaging.
        }