SqlEditor ContainerTest Property CleanCode C# Libraries v1.2.03 API
Gets or sets a value indicating whether this control is running in the context of Visual Studio's UserControl Test Container.

Namespace: CleanCode.SqlEditorControls
Assembly: CleanCode.SqlEditorControls (in CleanCode.SqlEditorControls.dll) Version: 1.2.3.0 (1.2.03)
Syntax

public bool ContainerTest { get; set; }

Field Value

true when run in the test container; otherwise, false. The default is false.
Remarks

By (my) convention, this property may be manually set within the UserControl Test Container to signal the parent control to expose additional functionality that allows the parent control to be tested in isolation, without having to embed it in an application. In this case, setting it to true populates the DataGridView with some unbound data, plus populates the connection list with two entries, pointing to the AdventureWorks and master DBs of a local SQL Server Express instance.
See Also