Saves the result and coverage of live tests into a file.

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 void SaveTestResultsAndCoverageAsHtml(
	this ILiveTestEngine engine,
	string path
)
Visual Basic
<ExtensionAttribute> _
Public Shared Sub SaveTestResultsAndCoverageAsHtml ( _
	engine As ILiveTestEngine, _
	path As String _
)
Visual C++
public:
[ExtensionAttribute]
static void SaveTestResultsAndCoverageAsHtml(
	ILiveTestEngine^ engine, 
	String^ path
)

Parameters

engine
Type: SSIS.Test..::..ILiveTestEngine
An instance of ILiveTestEngine.
path
Type: System..::..String
Path to a file where data is saved. Any existing file will be overwriten.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type ILiveTestEngine. 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