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 | |
---|---|---|
ByBuild(Uri) | Returns all test runs from the server that run against the given build. |
|
ByOwner(TeamFoundationIdentity) | Returns a list of test-run objects that is owned by the given identity. |
|
Count(String) | Returns the number of test-run objects on the server that match the given query. |
|
Create() | Returns a new test-run instance. |
|
Delete(IEnumerable<ITestRun>) | Deletes each test-run object in the provided list from the server. |
|
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. |
|
Find(Int32) | Retrieves the specified test run from the server. |
|
Query(String) | Returns a list of test-run objects that match the provided query. |
|
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