Collecting code coverage for ASP.Net with Web Development Server

This tutorial describes how to collect code coverage in ASP.Net applications tested on Microsoft’s Web Development server.

Related tutorials:

Code coverage for a .Net Core application.
Code coverage for a .Net Core application child process.
Code coverage for a service.
Code coverage for a service child process.
Code coverage for an IIS ISAPI DLL.
Code coverage for ASP.Net with IIS.
Code coverage for ASP.Net with Web Development Server.

Example Web Application

An example web application to use with this tutorial is in <Coverage Validator install directory>\examples\wdsAspnetExample\wdsAspnetExample\.

Load \examples\wdsAspnetExample\wdsAspnetExample\wdsAspnetExample.csproj and build the configurations or build wdsAspnetExample.csproj as part of the examples.sln solution.

Collecting code coverage in the ASP.Net web application

  1. Choose the Launch > Services > Monitor Web Development Server and ASP.Net… option.

    Coverage Validator launch menu Web Development Server

  2. The Monitor Web Development Server and ASP.Net dialog is displayed.

    Coverage Validator Web Development Server ASP.Net dialog

    1. Select the web development server you wish to use, and the port number. The defaults are chosen to represent the most recent version installed on your machine.
    2. Choose the appropriate native/mixed-mode/.Net option to specify which types of code you want to collect code coverage for. Mixed-mode is the default, as this collects code coverage for all types of code.
    3. Select the path to the folder containing web application.
    4. Specify the virtual path that this folder represents. The default is the root of the website: /
    5. Select a web browser of your choice. For this example we’ll choose firefox.exe.
    6. Specify the URL that is going to be loaded from the web application. The default is Default.aspx
  3. When you click OK, Coverage Validator will set up everything needed to interact with the Web Development server, the web browser will be started to load the specified URL.
  4. Coverage Validator will instrument your ASP.Net application and start collecting memory allocation data.
    The first time you start the web development server you may find that the web browser fails to open the web page because it takes longer to serve the page due to the code coverage monitoring. If this happens just wait a few seconds then reload the page in the web browser.

Stopping Web Development Server

When you have finished testing your ASP.Net application you need to stop Web Development Server so that all .Net operations can conclude. 

If you had selected Stop WDS when web browser is closed on the Monitor Web Development Server and ASP.Net dialog then you have nothing to do.

Otherwise, choose Launch > Services > Stop Web Development Server

Coverage Validator ASP.Net stop Web Development Server

Web Development Server will be requested to stop. This may take 30 seconds or more.

When Web Development Server stops, Coverage Validator will finish collecting code coverage and prepare its final collect code coverage reports.

I’m not getting any code coverage data. What can I do?

There are a few things to check.

  1. Check the diagnostics tab. If the NT Service API is working correctly, Coverage Validator will have some data. Information on instrumentation failures will be on the diagnostic tab.
  2. Check the debug information dialog. You can access this from the Tools > DLL Debug Information… menu. This dialog will tell you which DLLs have debug information and which do not. Any DLLs that don’t have debug information you’ll need to ensure that debug information is built for these DLLs and is findable.

Conclusion

You have learned how to use Coverage Validator to monitor ASP.Net applications using the Web Development server, and what to look at to diagnose errors if things don’t work first time.

 

 

Fully functional, free for 30 days