ITestSuiteEntryCollection Interface

 

Represents a collection of test suite entries.

Namespace:   Microsoft.TeamFoundation.TestManagement.Client
Assembly:  Microsoft.TeamFoundation.TestManagement.Client (in Microsoft.TeamFoundation.TestManagement.Client.dll)

Syntax

public interface ITestSuiteEntryCollection : ITestObjectCollection<ITestSuiteEntry>, 
    IList<ITestSuiteEntry>, ICollection<ITestSuiteEntry>, IEnumerable<ITestSuiteEntry>, 
    IEnumerable, INotifyCollectionChanged, INotifyPropertyChanged
public interface class ITestSuiteEntryCollection : ITestObjectCollection<ITestSuiteEntry^>, 
    IList<ITestSuiteEntry^>, ICollection<ITestSuiteEntry^>, IEnumerable<ITestSuiteEntry^>, 
    IEnumerable, INotifyCollectionChanged, INotifyPropertyChanged
type ITestSuiteEntryCollection = 
    interface
        interface ITestObjectCollection<ITestSuiteEntry>
        interface IList<ITestSuiteEntry>
        interface ICollection<ITestSuiteEntry>
        interface IEnumerable<ITestSuiteEntry>
        interface IEnumerable
        interface INotifyCollectionChanged
        interface INotifyPropertyChanged
    end
Public Interface ITestSuiteEntryCollection
    Inherits ITestObjectCollection(Of ITestSuiteEntry), IList(Of ITestSuiteEntry),
    ICollection(Of ITestSuiteEntry), IEnumerable(Of ITestSuiteEntry),
    IEnumerable, INotifyCollectionChanged, INotifyPropertyChanged

Properties

Name Description
System_CAPS_pubproperty Count

(Inherited from ICollection<T>.)

System_CAPS_pubproperty IsReadOnly

(Inherited from ICollection<T>.)

System_CAPS_pubproperty Item[Int32]

(Inherited from IList<T>.)

System_CAPS_pubproperty SyncRoot

Gets an object that can be used to synchronize access to the collection.(Inherited from ITestObjectCollection<TObjectInterface>.)

Methods

Name Description
System_CAPS_pubmethod Add(T)

(Inherited from ICollection<T>.)

System_CAPS_pubmethod Add(ITestCase)

Adds a test case to the collection.

System_CAPS_pubmethod Add(ITestSuiteBase)

Adds a test suite to the collection.

System_CAPS_pubmethod AddCases(IEnumerable<ITestCase>)

Adds a list of test cases to the collection.

System_CAPS_pubmethod AddCases(IEnumerable<ITestCase>, Boolean)

Adds a list of test cases and optionally ignores duplicate entries.

System_CAPS_pubmethod BulkCopy(ITestSuiteEntryCollection, Int32, IEnumerable<ITestSuiteEntry>, Boolean)

Copies a list of test entries to the provided test suite entry collection and optionally ignores duplicate entries.

System_CAPS_pubmethod BulkMove(Int32, IEnumerable<ITestSuiteEntry>)

Moves the provided list of test suite entries to a different location in this collection.

System_CAPS_pubmethod BulkMove(ITestSuiteEntryCollection, Int32, IEnumerable<ITestSuiteEntry>, Boolean)

Moves the provided list of test suite entries to the specified location in another test suite entry collection.

System_CAPS_pubmethod Clear()

(Inherited from ICollection<T>.)

System_CAPS_pubmethod Contains(T)

(Inherited from ICollection<T>.)

System_CAPS_pubmethod Contains(ITestObject<Int32>)

Returns a value that indicates whether this collection contains the specified test object.

System_CAPS_pubmethod CopyTo(T[], Int32)

(Inherited from ICollection<T>.)

System_CAPS_pubmethod GetEnumerator()

(Inherited from IEnumerable<T>.)

System_CAPS_pubmethod IndexOf(T)

(Inherited from IList<T>.)

System_CAPS_pubmethod IndexOf(ITestObject<Int32>)

Returns the index of the provided object in the collection.

System_CAPS_pubmethod Insert(Int32, T)

(Inherited from IList<T>.)

System_CAPS_pubmethod Insert(Int32, ITestCase)

Inserts the provided test case into the collection at the specified index.

System_CAPS_pubmethod Insert(Int32, ITestSuiteBase)

Inserts the provided test suite into the collection at the specified index.

System_CAPS_pubmethod InsertCases(Int32, IEnumerable<ITestCase>)

Inserts the provided list of test cases into the collection at the specified location.

System_CAPS_pubmethod InsertCases(Int32, IEnumerable<ITestCase>, Boolean)

Inserts the provided list of test cases into the collection at the specified index, and optionally ignores duplicate entries.

System_CAPS_pubmethod Move(Int32, Int32)

Moves the item of the collection from one position to another.(Inherited from ITestObjectCollection<TObjectInterface>.)

System_CAPS_pubmethod Remove(T)

(Inherited from ICollection<T>.)

System_CAPS_pubmethod Remove(ITestCase)

Removes the provided test case from the collection.

System_CAPS_pubmethod Remove(ITestSuiteBase)

Removes the provided test suite from the collection.

System_CAPS_pubmethod RemoveAt(Int32)

(Inherited from IList<T>.)

System_CAPS_pubmethod RemoveCases(IEnumerable<ITestCase>)

Removes the provided list of test cases from the collection.

System_CAPS_pubmethod RemoveEntries(IEnumerable<ITestSuiteEntry>)

Removes each entry of a provided list of test suite entries from the collection.

Events

Name Description
System_CAPS_pubevent CollectionChanged

(Inherited from INotifyCollectionChanged.)

System_CAPS_pubevent PropertyChanged

(Inherited from INotifyPropertyChanged.)

Remarks

This interface supports the object model for Test Case management (TCM) in Visual Studio. This interface is not intended for you to implement in a custom class, but you can use this interface in a custom class if a TCM object returns an internal implementation.

See Also

ITestObjectCollection<TObjectInterface>
ITestSuiteEntry
INotifyCollectionChanged
INotifyPropertyChanged
Microsoft.TeamFoundation.TestManagement.Client Namespace

Return to top