You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As the developer of a web application, I would like to test my application using component tests.
Example
[TestClass]publicsealedclassMyTests{[TestMethod]publicasyncTaskMyTest(){// setup the projectvarproject= ...;usingvarhost=TestHost.Run(project);varrequest=host.GetRequest("/myfunc");usingvarresponse=awaithost.GetResponse(request);Assert.AreEqual(HttpStatusCode.OK,response.StatusCode);}}
Acceptance criteria
The functionality is implemented in a new project (e.g. GenHTTP.Testing)
The test host allocates an available port when started
The hosts allows to easily create requests and read responses
Tests can be executed in parallel
The text was updated successfully, but these errors were encountered:
As the developer of a web application, I would like to test my application using component tests.
Example
Acceptance criteria
GenHTTP.Testing
)The text was updated successfully, but these errors were encountered: