MSTest Class

Represents the activity that runs tests using MSTest.

Inheritance Hierarchy

System.Object
  System.Activities.Activity
    Microsoft.TeamFoundation.Build.Workflow.Activities.MSTest

Namespace:  Microsoft.TeamFoundation.Build.Workflow.Activities
Assembly:  Microsoft.TeamFoundation.Build.Workflow (in Microsoft.TeamFoundation.Build.Workflow.dll)

Syntax

'宣言
<BuildCategoryAttribute> _
<ActivityTrackingAttribute(ActivityTrackingOption.ActivityOnly)> _
<ToolboxBitmapAttribute(GetType(TeamBuildBaseActivityDesigner), "DefaultBuildIcon.png")> _
Public NotInheritable Class MSTest _
    Inherits Activity
[BuildCategoryAttribute]
[ActivityTrackingAttribute(ActivityTrackingOption.ActivityOnly)]
[ToolboxBitmapAttribute(typeof(TeamBuildBaseActivityDesigner), "DefaultBuildIcon.png")]
public sealed class MSTest : Activity
[BuildCategoryAttribute]
[ActivityTrackingAttribute(ActivityTrackingOption::ActivityOnly)]
[ToolboxBitmapAttribute(typeof(TeamBuildBaseActivityDesigner), L"DefaultBuildIcon.png")]
public ref class MSTest sealed : public Activity
[<Sealed>]
[<BuildCategoryAttribute>]
[<ActivityTrackingAttribute(ActivityTrackingOption.ActivityOnly)>]
[<ToolboxBitmapAttribute(typeof(TeamBuildBaseActivityDesigner), "DefaultBuildIcon.png")>]
type MSTest =  
    class
        inherit Activity
    end
public final class MSTest extends Activity

The MSTest type exposes the following members.

Constructors

  Name Description
Public method MSTest Initializes a new instance of the MSTest class.

Top

Properties

  Name Description
Protected property CacheId Gets the identifier of the cache that is unique within the scope of the workflow definition. (Inherited from Activity.)
Public property Category Gets or sets the category by which to filter tests.
Public property CommandLineArguments Gets or sets a string of command line arguments to pass to MSTest.exe.
Protected property Constraints Gets a collection of Constraint activities that can be configured to provide validation for the Activity. (Inherited from Activity.)
Public property DisplayName Gets or sets an optional friendly name that is used for debugging, validation, exception handling, and tracking. (Inherited from Activity.)
Public property Flavor Gets or sets the flavor of the build against which to publish test results.
Public property Id Gets an identifier that is unique in the scope of the workflow definition. (Inherited from Activity.)
Protected property Implementation Gets or sets the delegate that returns an Activity that contains the execution logic. (Inherited from Activity.)
Public property MaxPriority Gets or sets an integer representing the maximum priority of tests to run.
Public property MinPriority Gets or sets an integer representing the minimum priority of tests to run.
Public property PathToResultsFilesRoot Gets or sets the root of the path to the directory on the build agent where MSTest will put the result files (.trx files).
Public property Platform Gets or sets the platform of the build against which to publish test results.
Public property Publish Gets or sets a flag indicating whether to publish test results.
Public property SearchPathRoot Gets or sets the root path for search operations.
Public property TestConfigId Gets or sets the ID of an existing test management configuration to associate with the published run.
Public property TestConfigName Gets or sets the name of an existing test management configuration to associate with the published run.
Public property TestContainers Gets or sets an enumerable collection of strings identifying the test containers that contain the tests to run.
Public property TestLists Gets or sets an enumerable collection of strings identifying the test lists to run.
Public property TestMetadata Gets or sets the string identifying the metadata file that contains the test lists to run.
Public property TestNames Gets or sets an enumerable collection of the test names to run.
Public property TestSettings Gets or sets the path to a test run configuration settings file.
Public property ToolPath Gets or sets the path to the directory that contains the version of MSTest.exe to run.

Top

Methods

  Name Description
Protected method CacheMetadata Creates and validates a description of the activity’s arguments, variables, child activities, and activity delegates. (Inherited from Activity.)
Public method Equals Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method ShouldSerializeDisplayName Indicates whether the DisplayName property should be serialized. (Inherited from Activity.)
Public method ShouldSerializeMaxPriority Checks whether the MaxPriority property should be serialized as a XAML string.
Public method ShouldSerializeMinPriority Checks whether the MinPriority property should be serialized as a XAML string.
Public method ShouldSerializePublish Checks whether the Publish property should be serialized as a XAML string.
Public method ShouldSerializeTestConfigId Checks whether the TestConfigId property should be serialized as a XAML string.
Public method ToString Returns a String that contains the Id and DisplayName of the Activity. (Inherited from Activity.)

Top

Remarks

For more information, see Command-Line Options for Publishing Test Results.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

Microsoft.TeamFoundation.Build.Workflow.Activities Namespace