TeamCity.VSTest.TestLogger/TestEvent.cs (8 lines of code) (raw):
namespace TeamCity.VSTest.TestLogger;
using Microsoft.VisualStudio.TestPlatform.ObjectModel;
public class TestEvent(string suiteName, string displayName, TestCase testCase)
{
public readonly string SuiteName = suiteName;
public readonly string DisplayName = displayName;
public readonly TestCase TestCase = testCase;
}