mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-27 20:01:52 +01:00
select id, name, value from table where id in (1, 2, 3, 4, 5)
This commit is contained in:
@@ -13,11 +13,12 @@ namespace WireMock.Net.Tests;
|
|||||||
|
|
||||||
public partial class WireMockServerTests
|
public partial class WireMockServerTests
|
||||||
{
|
{
|
||||||
[Fact]
|
[Theory]
|
||||||
public async Task WireMockServer_WithParam_QueryParameterMultipleValueSupport_NoComma_Should_Ignore_Comma()
|
[InlineData("SELECT id, value FROM table WHERE id = 1")]
|
||||||
|
[InlineData("select id, name, value from table where id in (1, 2, 3, 4, 5)")]
|
||||||
|
public async Task WireMockServer_WithParam_QueryParameterMultipleValueSupport_NoComma_Should_Ignore_Comma(string queryValue)
|
||||||
{
|
{
|
||||||
// Arrange
|
// Arrange
|
||||||
var queryValue = "SELECT id, value FROM table WHERE id = 1";
|
|
||||||
var settings = new WireMockServerSettings
|
var settings = new WireMockServerSettings
|
||||||
{
|
{
|
||||||
QueryParameterMultipleValueSupport = QueryParameterMultipleValueSupport.NoComma
|
QueryParameterMultipleValueSupport = QueryParameterMultipleValueSupport.NoComma
|
||||||
|
|||||||
Reference in New Issue
Block a user