This method is called during the verification phase of a test. It is executed after the package has been executed. Implement this method to check the test results. For example, check existance of rows in a table or change of variable value.

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

Syntax

C#
protected abstract void Verify(
	VerificationContext context
)
Visual Basic
Protected MustOverride Sub Verify ( _
	context As VerificationContext _
)
Visual C++
protected:
virtual void Verify(
	VerificationContext^ context
) abstract

Parameters

context
Type: SSIS.Test..::..VerificationContext
Provides access to the objects available during the verification phase. A reference to the VerificationContext is provided by the framework the during test execution.

See Also