public virtual async Task NotMatch_MultipleParameters(string template, string path)
        {
            // Arrange
            var(matcher, endpoint)    = CreateMatcher(template);
            var(httpContext, feature) = CreateContext(path);

            // Act
            await matcher.MatchAsync(httpContext, feature);

            // Assert
            DispatcherAssert.AssertNotMatch(feature);
        }
        public virtual async Task NotMatch_SingleLiteralSegment(string path)
        {
            // Arrange
            var(matcher, endpoint)    = CreateMatcher("/simple");
            var(httpContext, feature) = CreateContext(path);

            // Act
            await matcher.MatchAsync(httpContext, feature);

            // Assert
            DispatcherAssert.AssertNotMatch(feature);
        }