Creates an instance of the TestResult class.

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

Syntax

C#
protected TestResult(
	DtsPackage package,
	DtsExecutable executable,
	string testId,
	string repositoryName,
	string testName,
	string testDescription
)
Visual Basic
Protected Sub New ( _
	package As DtsPackage, _
	executable As DtsExecutable, _
	testId As String, _
	repositoryName As String, _
	testName As String, _
	testDescription As String _
)
Visual C++
protected:
TestResult(
	DtsPackage^ package, 
	DtsExecutable^ executable, 
	String^ testId, 
	String^ repositoryName, 
	String^ testName, 
	String^ testDescription
)

Parameters

package
Type: SSIS.Test.Dts..::..DtsPackage
An instance of the DtsPackage class.
executable
Type: SSIS.Test.Dts..::..DtsExecutable
An instance of the DtsExecutable class.
testId
Type: System..::..String
Id of the test.
repositoryName
Type: System..::..String
Name of the repository.
testName
Type: System..::..String
Name of the test.
testDescription
Type: System..::..String
Description of the test.

See Also