コード例 #1
0
        public void when_matching_of_queue_name_and_pattern_different_only_with_case_requested_it_should_return_false()
        {
            var          sut       = new RegexQueueNameMatcher();
            const string QueueName = "queue-name";

            sut.DoesMatch(QueueName, QueueName.ToUpper()).Should().BeFalse("case of queue name and pattern are the different");
        }