This method is called during the preparation phase of a test. It is executed before the target package or executable is executed. Implement this method to prepare the test. For example, create database objects or set package variables.

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

Syntax

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

Parameters

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

See Also