This method is called during the cleanup phase of a test. It is executed after the target package or executable has been executed and after the verification phase. Implement this method to clean up test objects. For example, drop database tables or delete files.

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

Syntax

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

Parameters

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

See Also