mock4net
mock4net copied to clipboard
A tiny mock http server for dotnet, inspired by wiremock from the Java landscape
I am documenting this repository on https://wiremock.org/docs/solutions/dotnet/ , so cleaned up some typos while around
Fix typo
That was pretty straightforward, the only thing is that nunit Timeout attribute is not available when tagetting netcoreapp2.0. https://github.com/nunit/nunit/issues/1638 Let's wait for the support?
Hello please provide a contributing.md file. It must contains what are the ground rules for submitting a contribution to the project. It typically covers: - code/naming style - test coverage...
Hi. Great project. I have added some functionality I needed - Owin hosting - Be able to run and control out of proc. (Driven from the need to run our...
:wave: Multiple cosmetic proposals: - fix some StyleCop readability rules (SA11??), disable others if necessary (including R#er ones) - fix some StyleCop naming rules (SA13??), disable others if necessary (including...
Wouldn't it be a good idea if we can pass a Func while creating the Responses, this way when the response is being creating, the func will be invoked which...
Hello! I'd like to create small console application, that will be emulate external server API. I'd like to ask user(QA) to choose via console input with type of request emulator...
i am trying to mock a soap request over https with mock4net: server = FluentMockServer.Start(port: 8443, ssl : true); server .Given( Requests .WithUrl("/*") .UsingPost()) .RespondWith( Mock4Net.Core.Responses .WithStatusCode(200) .WithBody(soapResponse) ); I...
The initial mock4net version relies on _Responses_ starting point to create checks. When I read it, I assume this is an _enum_ type (due the plural form). Following this conception,...