ITestRunStatistics Interface
Represents the counts of several aspects of test results for a test run.
Namespace: Microsoft.TeamFoundation.TestManagement.Client
Assembly: Microsoft.TeamFoundation.TestManagement.Client (in Microsoft.TeamFoundation.TestManagement.Client.dll)
Syntax
'Declaration
Public Interface ITestRunStatistics _
Inherits INotifyPropertyChanged
public interface ITestRunStatistics : INotifyPropertyChanged
public interface class ITestRunStatistics : INotifyPropertyChanged
type ITestRunStatistics =
interface
interface INotifyPropertyChanged
end
public interface ITestRunStatistics extends INotifyPropertyChanged
The ITestRunStatistics type exposes the following members.
Properties
Name | Description | |
---|---|---|
CompletedTests | Gets the number of completed tests in the test run. | |
FailedTests | Gets the number of tests that have failed. | |
InconclusiveTests | Gets the number of tests that have inconclusive results. | |
InProgressTests | Gets the number of tests in progress. | |
Item[TestOutcome] | Gets the number of tests that have the specified outcome. | |
Item[TestResultState] | Gets the number of tests that have the specified result state. | |
PassedTests | Gets the number of tests that have passed. | |
PendingTests | Gets the number of pending tests. | |
TestResolutionStatistics | Gets the list of test resolution state statistic objects. | |
TotalTests | Gets the total number of tests in the test run. |
Top
Methods
Name | Description | |
---|---|---|
GetStatistics | Returns an array of test run statistic objects. | |
Refresh | Refreshes the statistics from the server. |
Top
Events
Name | Description | |
---|---|---|
PropertyChanged | Occurs when a property value changes. (Inherited from INotifyPropertyChanged.) |
Top
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.