TestAggregation Constructors

Definition

Overloads

TestAggregation()

Initializes a new instance of the TestAggregation class.

TestAggregation(TestAggregation)

Initializes a new instance of the TestAggregation class that is a copy of the provided test aggregation object.

TestAggregation(SerializationInfo, StreamingContext)

Initializes a new instance of the TestAggregation class from XML by using the provided information and context.

TestAggregation(String, String)

Initializes a new instance of the TestAggregation class.

TestAggregation()

Initializes a new instance of the TestAggregation class.

protected:
 TestAggregation();
protected TestAggregation ();
Protected Sub New ()

Applies to

TestAggregation(TestAggregation)

Initializes a new instance of the TestAggregation class that is a copy of the provided test aggregation object.

protected:
 TestAggregation(Microsoft::VisualStudio::TestTools::Common::TestAggregation ^ copy);
protected TestAggregation (Microsoft.VisualStudio.TestTools.Common.TestAggregation copy);
new Microsoft.VisualStudio.TestTools.Common.TestAggregation : Microsoft.VisualStudio.TestTools.Common.TestAggregation -> Microsoft.VisualStudio.TestTools.Common.TestAggregation
Protected Sub New (copy As TestAggregation)

Parameters

Applies to

TestAggregation(SerializationInfo, StreamingContext)

Initializes a new instance of the TestAggregation class from XML by using the provided information and context.

protected:
 TestAggregation(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected TestAggregation (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new Microsoft.VisualStudio.TestTools.Common.TestAggregation : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> Microsoft.VisualStudio.TestTools.Common.TestAggregation
Protected Sub New (info As SerializationInfo, context As StreamingContext)

Parameters

Applies to

TestAggregation(String, String)

Initializes a new instance of the TestAggregation class.

protected:
 TestAggregation(System::String ^ name, System::String ^ description);
protected TestAggregation (string name, string description);
new Microsoft.VisualStudio.TestTools.Common.TestAggregation : string * string -> Microsoft.VisualStudio.TestTools.Common.TestAggregation
Protected Sub New (name As String, description As String)

Parameters

name
String

A name for this test aggregation.

description
String

A description for this test aggregation.

Applies to