<PackageReference Include="NUnit" Version="3.2.0" />

TestStartedEvent

public class TestStartedEvent : Event
TestStartedEvent holds information needed to call the TestStarted method.
using NUnit.Framework.Interfaces; namespace NUnit.Framework.Internal.Execution { public class TestStartedEvent : Event { private ITest test; public TestStartedEvent(ITest test) { this.test = test; } public override void Send(ITestListener listener) { listener.TestStarted(test); } } }