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.
Interface for creating custom test lists.
Namespace: Microsoft.VisualStudio.TestTools.Common
Assembly: Microsoft.VisualStudio.QualityTools.Common (in Microsoft.VisualStudio.QualityTools.Common.dll)
Syntax
'Declaration
Public Interface ITestList
public interface ITestList
public interface class ITestList
type ITestList = interface end
public interface ITestList
The ITestList type exposes the following members.
Properties
Name | Description | |
---|---|---|
![]() |
CanChangeTestLists | Gets a value that indicates whether the child lists can be modified. |
![]() |
CanChangeTests | Gets a value that indicates whether the tests in the list can be modified. |
![]() |
Name | Gets or sets the name of the list. |
![]() |
ReadOnly | Gets a value that indicates whether the list can be modified. |
Top
Methods
Name | Description | |
---|---|---|
![]() |
AddTest | Adds a test to the test list. |
![]() |
CreateChildList | Creates a child list in the current list by using the provided list name. |
![]() |
DeleteChildList | Deletes the provided child list from the current list. |
![]() |
GetChildLists | Retrieves an array of child ITestList objects from the current list. |
![]() |
GetMissingTests | Retrieves an array of links to tests in the current list that cannot be loaded. |
![]() |
GetTests | Retrieves an array of tests in the current list. |
![]() |
MoveChildList | Moves the specified child list to the specified destination list. |
![]() |
RemoveTest | Removes the specified test from the list. |
Top