DatabaseTestAction.Conditions Property
Gets the collection of test conditions that are associated with the set of Transact-SQL (T-SQL) statements.
Namespace: Microsoft.VisualStudio.TeamSystem.Data.UnitTesting
Assembly: Microsoft.VisualStudio.TeamSystem.Data.UnitTesting (in Microsoft.VisualStudio.TeamSystem.Data.UnitTesting.dll)
Syntax
'Declaration
<BrowsableAttribute(False)> _
Public ReadOnly Property Conditions As Collection(Of TestCondition)
'Usage
Dim instance As DatabaseTestAction
Dim value As Collection(Of TestCondition)
value = instance.Conditions
[BrowsableAttribute(false)]
public Collection<TestCondition> Conditions { get; }
[BrowsableAttribute(false)]
public:
property Collection<TestCondition^>^ Conditions {
Collection<TestCondition^>^ get ();
}
public function get Conditions () : Collection<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 contained in the SqlScript are executed.
Permissions
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
Microsoft.VisualStudio.TeamSystem.Data.UnitTesting Namespace