NET Core 2.1 + support for Service Fabric commandline parameters (#209)

* netcore 2.1

* SimpleCommandLineParserTests

* tests

* SimpleCommandLineParserTests

* test report

* AspNetCoreSelfHost

* Fixed Resharper warnings

* tests

* .

* ResponseWithProxyTests

ResponseWithProxyTests

* postmanecho
This commit is contained in:
Stef Heyenrath
2018-10-10 09:49:32 +02:00
committed by GitHub
parent 04bcca6e14
commit 83457c1601
147 changed files with 3676 additions and 3330 deletions

View File

@@ -30,14 +30,14 @@ namespace WireMock.Net.Tests.Owin
{
public class WireMockMiddlewareTests
{
private WireMockMiddleware _sut;
private readonly WireMockMiddleware _sut;
private Mock<IWireMockMiddlewareOptions> _optionsMock;
private Mock<IOwinRequestMapper> _requestMapperMock;
private Mock<IOwinResponseMapper> _responseMapperMock;
private Mock<IMappingMatcher> _matcherMock;
private Mock<IMapping> _mappingMock;
private Mock<IContext> _contextMock;
private readonly Mock<IWireMockMiddlewareOptions> _optionsMock;
private readonly Mock<IOwinRequestMapper> _requestMapperMock;
private readonly Mock<IOwinResponseMapper> _responseMapperMock;
private readonly Mock<IMappingMatcher> _matcherMock;
private readonly Mock<IMapping> _mappingMock;
private readonly Mock<IContext> _contextMock;
public WireMockMiddlewareTests()
{