Executes a package and starts gui monitor.

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

Parameters

engine
Type: SSIS.Test..::..ILiveTestEngine
An instance of ILiveTestEngine.
repositoryName
Type: System..::..String
Name of the repository where the package is loaded.
packageName
Type: System..::..String
Name identifier of a package to execute. If a package is loaded from file system, the name corresponds to the package file name (e.g. MyPackageFile.dtsx). If a package is loaded from dts or sql server, the name must be the same as the name under which the package is saved on dts or sql server.

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