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 | |
|---|---|---|
| .gif) | CanChangeTestLists | Gets a value that indicates whether the child lists can be modified. | 
| .gif) | CanChangeTests | Gets a value that indicates whether the tests in the list can be modified. | 
| .gif) | Name | Gets or sets the name of the list. | 
| .gif) | ReadOnly | Gets a value that indicates whether the list can be modified. | 
Top
Methods
| Name | Description | |
|---|---|---|
| .gif) | AddTest | Adds a test to the test list. | 
| .gif) | CreateChildList | Creates a child list in the current list by using the provided list name. | 
| .gif) | DeleteChildList | Deletes the provided child list from the current list. | 
| .gif) | GetChildLists | Retrieves an array of child ITestList objects from the current list. | 
| .gif) | GetMissingTests | Retrieves an array of links to tests in the current list that cannot be loaded. | 
| .gif) | GetTests | Retrieves an array of tests in the current list. | 
| .gif) | MoveChildList | Moves the specified child list to the specified destination list. | 
| .gif) | RemoveTest | Removes the specified test from the list. | 
Top