public void PositiveTopicCountsWork()
        {
            var config = new ServiceBusScaleoutOptions("cs", "topic");

            config.TopicCount = 1;
        }
        public void ValidateTopicCount(int topicCount)
        {
            var config = new ServiceBusScaleoutOptions("cs", "topic");

            Assert.Throws <ArgumentOutOfRangeException>(() => config.TopicCount = topicCount);
        }