Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets the collection of test conditions that are associated with the set of Transact-SQL statements.
Namespace: Microsoft.Data.Tools.Schema.Sql.UnitTesting
Assembly: Microsoft.Data.Tools.Schema.Sql.UnitTesting (in Microsoft.Data.Tools.Schema.Sql.UnitTesting.dll)
Syntax
[BrowsableAttribute(false)]
public Collection<TestCondition> Conditions { get; }
public:
[BrowsableAttribute(false)]
property Collection<TestCondition^>^ Conditions {
Collection<TestCondition^>^ get();
}
[<BrowsableAttribute(false)>]
member Conditions : Collection<TestCondition> with get
<BrowsableAttribute(False)>
Public ReadOnly Property Conditions As Collection(Of TestCondition)
Property Value
Type: System.Collections.ObjectModel.Collection<TestCondition>
Remarks
This is a collection of zero to many test conditions that are evaluated after the statements that are contained in the SqlScript property are executed.
See Also
SqlScript
SqlDatabaseTestAction Class
Microsoft.Data.Tools.Schema.Sql.UnitTesting Namespace
Return to top