Click here to Skip to main content
15,886,199 members
Articles / Programming Languages / C#

Code Coverage for Regression Tests (Manual/Auto)

Rate me:
Please Sign up or sign in to vote.
4.44/5 (8 votes)
16 May 2013CPOL5 min read 36.4K   564   17  
How to use code coverage during regression tests (auto/manual)
In this article, you will learn how to use code coverage to instrument DLLs or EXEs during regression tests (manual/auto) and generate reports based on that.

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WindowsFormsApplication1", "WindowsFormsApplication1\WindowsFormsApplication1.csproj", "{A5AE409A-3347-43D0-8C53-28B60CEF1731}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|Any CPU = Debug|Any CPU
		Debug|Mixed Platforms = Debug|Mixed Platforms
		Debug|x86 = Debug|x86
		Release|Any CPU = Release|Any CPU
		Release|Mixed Platforms = Release|Mixed Platforms
		Release|x86 = Release|x86
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{A5AE409A-3347-43D0-8C53-28B60CEF1731}.Debug|Any CPU.ActiveCfg = Debug|x86
		{A5AE409A-3347-43D0-8C53-28B60CEF1731}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
		{A5AE409A-3347-43D0-8C53-28B60CEF1731}.Debug|Mixed Platforms.Build.0 = Debug|x86
		{A5AE409A-3347-43D0-8C53-28B60CEF1731}.Debug|x86.ActiveCfg = Debug|x86
		{A5AE409A-3347-43D0-8C53-28B60CEF1731}.Debug|x86.Build.0 = Debug|x86
		{A5AE409A-3347-43D0-8C53-28B60CEF1731}.Release|Any CPU.ActiveCfg = Release|x86
		{A5AE409A-3347-43D0-8C53-28B60CEF1731}.Release|Mixed Platforms.ActiveCfg = Release|x86
		{A5AE409A-3347-43D0-8C53-28B60CEF1731}.Release|Mixed Platforms.Build.0 = Release|x86
		{A5AE409A-3347-43D0-8C53-28B60CEF1731}.Release|x86.ActiveCfg = Release|x86
		{A5AE409A-3347-43D0-8C53-28B60CEF1731}.Release|x86.Build.0 = Release|x86
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer Datamatics Global Service Ltd.
India India
MCTS Web Applications Development with Microsoft .NET Framework 4
MCPD Windows Framework 2.0
Working in Microsoft Dotnet Technologies more that 3 yrs.

Comments and Discussions