-
Notifications
You must be signed in to change notification settings - Fork 84
Open
Description
Is there any option to pass certificate in test request?
MyWebApi
.Server()
.Working()
.WithHttpRequestMessage(
request => request
.WithStringContent(string.Empty, CoreConstants.TEXT_XML_CONTENT_TYPE)
.WithMethod(HttpMethod.Post)
.WithRequestUri(url))
.ShouldReturnHttpResponseMessage()
.WithStatusCode(HttpStatusCode.Forbidden);