iKarthik

Results 2 comments of iKarthik

Am in a similar situation, has anyone figured out why out of the box installation does not seem to work?

I want to be able to build the responses with lamdas so that we can do the following ``` _server.Given(Requests.WithUrl("/foo").UsingPost()) .RespondWith(Responses.WithStatusCode(200).WithResponseFunc(Func)); ``` Where Func could be ``` ` private Response...