TeamCity.VSTest.TestLogger/IFailedTestsReportWriter.cs (7 lines of code) (raw):
namespace TeamCity.VSTest.TestLogger;
using System;
using Microsoft.VisualStudio.TestPlatform.ObjectModel;
internal interface IFailedTestsReportWriter : IDisposable
{
void ReportFailedTest(TestCase testName);
}