Converts unit test results and coverage to a html page.

Namespace: SSIS.Test.Report
Assembly: SSIS.Test.Report (in SSIS.Test.Report.dll) Version: 3.0.0.236 (3.0.0.236)

Syntax

C#
public static string ConvertTestResultsAndCoverageToHtmlPage(
	this IUnitTestEngine engine
)
Visual Basic
<ExtensionAttribute> _
Public Shared Function ConvertTestResultsAndCoverageToHtmlPage ( _
	engine As IUnitTestEngine _
) As String
Visual C++
public:
[ExtensionAttribute]
static String^ ConvertTestResultsAndCoverageToHtmlPage(
	IUnitTestEngine^ engine
)

Parameters

engine
Type: SSIS.Test..::..IUnitTestEngine
An instance of IUnitTestEngine.

Return Value

Html string representing page.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IUnitTestEngine. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).

See Also