ITestRunHelper Interface

 

Provides helper properties and methods for test run objects in Visual Studio Test Professional.

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

Syntax

public interface ITestRunHelper
public interface class ITestRunHelper
type ITestRunHelper = interface end
Public Interface ITestRunHelper

Methods

Name Description
System_CAPS_pubmethod ByBuild(Uri)

Returns all test runs from the server that run against the given build.

System_CAPS_pubmethod ByOwner(TeamFoundationIdentity)

Returns a list of test-run objects that is owned by the given identity.

System_CAPS_pubmethod Count(String)

Returns the number of test-run objects on the server that match the given query.

System_CAPS_pubmethod Create()

Returns a new test-run instance.

System_CAPS_pubmethod Delete(IEnumerable<ITestRun>)

Deletes each test-run object in the provided list from the server.

System_CAPS_pubmethod DeleteByBuild(Uri)

Deletes all test runs, test run information, and build-level coverage data that is stored on the server for the given build URI.

System_CAPS_pubmethod Find(Int32)

Retrieves the specified test run from the server.

System_CAPS_pubmethod Query(String)

Returns a list of test-run objects that match the provided query.

System_CAPS_pubmethod Query(String, Boolean)

Queries the server to find all test runs matching the given query. Also provides an option for including statistics.

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

ITestRun
Microsoft.TeamFoundation.TestManagement.Client Namespace

Return to top