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

public interface ITestRunStatistics : INotifyPropertyChanged
public interface class ITestRunStatistics : INotifyPropertyChanged
type ITestRunStatistics = 
    interface
        interface INotifyPropertyChanged
    end
Public Interface ITestRunStatistics
    Inherits INotifyPropertyChanged

Properties

Name Description
System_CAPS_pubproperty CompletedTests

Gets the number of completed tests in the test run.

System_CAPS_pubproperty FailedTests

Gets the number of tests that have failed.

System_CAPS_pubproperty InconclusiveTests

Gets the number of tests that have inconclusive results.

System_CAPS_pubproperty InProgressTests

Gets the number of tests in progress.

System_CAPS_pubproperty Item[TestOutcome]

Gets the number of tests that have the specified outcome.

System_CAPS_pubproperty Item[TestResultState]

Gets the number of tests that have the specified result state.

System_CAPS_pubproperty PassedTests

Gets the number of tests that have passed.

System_CAPS_pubproperty PendingTests

Gets the number of pending tests.

System_CAPS_pubproperty TestResolutionStatistics

Gets the list of test resolution state statistic objects.

System_CAPS_pubproperty TotalTests

Gets the total number of tests in the test run.

Methods

Name Description
System_CAPS_pubmethod GetStatistics()

Returns an array of test run statistic objects.

System_CAPS_pubmethod Refresh()

Refreshes the statistics from the server.

Events

Name Description
System_CAPS_pubevent PropertyChanged

(Inherited from INotifyPropertyChanged.)

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

INotifyPropertyChanged
Microsoft.TeamFoundation.TestManagement.Client Namespace

Return to top