1 instantiation of TestCaseStartEventArgs
Microsoft.TestPlatform.CrossPlatEngine (1)
EventHandlers\TestCaseEventsHandler.cs (1)
40TestCaseStart.SafeInvoke(this, new TestCaseStartEventArgs(testCase), "TestCaseEventsHandler.RaiseTestCaseStart");
17 references to TestCaseStartEventArgs
Microsoft.TestPlatform.CommunicationUtilities (4)
DataCollectionTestCaseEventHandler.cs (2)
86var testCaseStartEventArgs = _dataSerializer.DeserializePayload<TestCaseStartEventArgs>(message);
DataCollectionTestCaseEventSender.cs (1)
83public void SendTestCaseStart(TestCaseStartEventArgs e)
Interfaces\IDataCollectionTestCaseEventSender.cs (1)
40void SendTestCaseStart(TestCaseStartEventArgs e);
Microsoft.TestPlatform.CrossPlatEngine (4)
DataCollection\InProcDataCollectionExtensionManager.cs (1)
149private void TriggerTestCaseStart(object? sender, TestCaseStartEventArgs e)
DataCollection\Interfaces\ITestEventsPublisher.cs (1)
28event EventHandler<TestCaseStartEventArgs> TestCaseStart;
DataCollection\ProxyOutOfProcDataCollectionManager.cs (1)
51private void TriggerTestCaseStart(object? sender, TestCaseStartEventArgs e)
EventHandlers\TestCaseEventsHandler.cs (1)
24public event EventHandler<TestCaseStartEventArgs>? TestCaseStart;
Microsoft.TestPlatform.Extensions.BlameDataCollector (1)
BlameCollector.cs (1)
455private void EventsTestCaseStart(object? sender, TestCaseStartEventArgs e)
Microsoft.VisualStudio.TestPlatform.Common (4)
DataCollection\DataCollectionManager.cs (1)
312public void TestCaseStarted(TestCaseStartEventArgs testCaseStartEventArgs)
DataCollection\Interfaces\IDataCollectionManager.cs (1)
29void TestCaseStarted(TestCaseStartEventArgs testCaseStartEventArgs);
DataCollection\TestPlatformDataCollectionEvents.cs (2)
34[typeof(TestCaseStartEventArgs)] = OnTestCaseStart, 65public override event EventHandler<TestCaseStartEventArgs>? TestCaseStart;
Microsoft.VisualStudio.TestPlatform.ObjectModel (4)
DataCollector\Events\DataCollectionEvents.cs (1)
38public abstract event EventHandler<TestCaseStartEventArgs>? TestCaseStart;
DataCollector\Events\TestCaseEvents.cs (3)
141/// Initializes a new instance of the <see cref="TestCaseStartEventArgs"/> class with default datacollection context. 151/// Initializes a new instance of the <see cref="TestCaseStartEventArgs"/> class. 174/// Initializes a new instance of the <see cref="TestCaseStartEventArgs"/> class.