mirror of
https://github.com/wiremock/WireMock.Net.git
synced 2026-03-20 16:44:31 +01:00
Added support of custom matchers in static mappings (#713)
* Added support of custom matchers in static mappings * Fixed code style issues * Fixed naming and code style * added empty line * Ignore serialization of CustomMatcherMappings property in WireMockServerSettings * Added integration tests for CustomMatcherMappings
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace WireMock.Net.Tests.Serialization
|
||||
{
|
||||
public class CustomPathParamMatcherModel
|
||||
{
|
||||
public string Path { get; set; }
|
||||
public Dictionary<string, string> PathParams { get; set; }
|
||||
|
||||
public CustomPathParamMatcherModel()
|
||||
{
|
||||
}
|
||||
|
||||
public CustomPathParamMatcherModel(string path, Dictionary<string, string> pathParams)
|
||||
{
|
||||
Path = path;
|
||||
PathParams = pathParams;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user