Share via


TestCategoryItemCollection Constructors

Definition

Overloads

TestCategoryItemCollection()

Initializes a new instance of the TestCategoryItemCollection class.

TestCategoryItemCollection(TestCategoryItemCollection)

Initializes a new instance of the TestCategoryItemCollection class by using the items in the provided collection.

TestCategoryItemCollection(String[])

Initializes a new instance of the TestCategoryItemCollection class by using the provided array of category names.

TestCategoryItemCollection()

Initializes a new instance of the TestCategoryItemCollection class.

public:
 TestCategoryItemCollection();
public TestCategoryItemCollection ();
Public Sub New ()

Applies to

TestCategoryItemCollection(TestCategoryItemCollection)

Initializes a new instance of the TestCategoryItemCollection class by using the items in the provided collection.

public:
 TestCategoryItemCollection(Microsoft::VisualStudio::TestTools::Common::TestCategoryItemCollection ^ other);
public TestCategoryItemCollection (Microsoft.VisualStudio.TestTools.Common.TestCategoryItemCollection other);
new Microsoft.VisualStudio.TestTools.Common.TestCategoryItemCollection : Microsoft.VisualStudio.TestTools.Common.TestCategoryItemCollection -> Microsoft.VisualStudio.TestTools.Common.TestCategoryItemCollection
Public Sub New (other As TestCategoryItemCollection)

Parameters

Applies to

TestCategoryItemCollection(String[])

Initializes a new instance of the TestCategoryItemCollection class by using the provided array of category names.

public:
 TestCategoryItemCollection(cli::array <System::String ^> ^ items);
public TestCategoryItemCollection (string[] items);
new Microsoft.VisualStudio.TestTools.Common.TestCategoryItemCollection : string[] -> Microsoft.VisualStudio.TestTools.Common.TestCategoryItemCollection
Public Sub New (items As String())

Parameters

items
String[]

A list of category names.

Applies to