public void Match_FindsMatches(string parameterName, IDictionary <string, object> values, bool excluded, bool match)
        {
            // Arrange
            var constraint = new SetRouteConstraint <string>(this.testSet, matchOnExcluded: excluded);

            // Act
            var result = constraint.Match(request: null, route: null, parameterName: parameterName, values: values, routeDirection: HttpRouteDirection.UriResolution);

            // Assert
            Assert.Equal(match, result);
        }