This is my first test for the Asp.Net web application. We have an engine consisting of several modules. I need to check the classes in the Engine module. Although these classes are part of the Asp.Net application, they consist only of business logic.
How can I test these classes while others are part of WebApp? because i get this error
The web request http: // localhost: 8936 / completed successfully without running the test. This can happen if the web application setup for testing fails (an ASP.NET server error occurs while processing the request) or when the ASP.NET page fails (the URL may point to an HTML page, web service or directory list). Running tests in ASP.NET requires that the URL resolve to the ASP.NET page and that the page runs correctly before the load event. The response from the request is stored in the file "WebRequestResponse_BlogManagerBPOConstr.html" with the test results; you can usually open this file using a web browser to view its contents.
thank
EDIT: @Mark, this is one of the TestMethod methods created by the designer
/
[TestMethod()]
[HostType("ASP.NET")]
[AspNetDevelopmentServerHost("D:\\WorkingCopies\\MyProject\\Engine", "/")]
[UrlToTest("http://localhost:8936/")]
public void BlogManagerBPOConstructorTest()
{
BlogManagerBPO target = new BlogManagerBPO();
Assert.Inconclusive("TODO: Implement code to verify target");
}