You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Initialize method receives DataCollectionEvents that you can subscribe to - TestCaseEnd args has a TestOutcome property of enum type
public enum TestOutcome
{
/// <summary>
/// Test Case Does Not Have an outcome.
/// </summary>
None = 0,
/// <summary>
/// Test Case Passed
/// </summary>
Passed = 1,
/// <summary>
/// Test Case Failed
/// </summary>
Failed = 2,
/// <summary>
/// Test Case Skipped
/// </summary>
Skipped = 3,
/// <summary>
/// Test Case Not found
/// </summary>
NotFound = 4,
}
This is not the correct repo and this issue should be closed as this repo is for ( samples ) vs extensibility and you are requesting information on a particular visual studio extension.
Hi, where Can I find details about subscribing to the Tests results (from Test Explorer) ? Just want to know when Tests Failed or Passed,
The text was updated successfully, but these errors were encountered: