public void ShouldDefaultStorageQueueIfNotConfiguredAndNoOldLegacyQueueIsPresent()
        {
            const string endpointName = "MyEndpoint";

            MsmqHelpers.DeleteQueue(queuePath);

            Assert.AreEqual($"{endpointName}.Subscriptions", MsmqSubscriptionPersistence.DetermineStorageQueueName(PrepareSettings(endpointName)));
        }
 public void TearDown()
 {
     // Delete the queue
     MsmqHelpers.DeleteQueue(queuePath);
 }