protected void RaiseTestPlanRunStarted(TestPlanRunStartedEventArgs e) { var handler = TestPlanRunStarted; if (handler != null) { handler(this, e); } }
public override void OnTestPlanRunStart(TestPlanRun planRun) { TestPlanRunStartedEventArgs e = new TestPlanRunStartedEventArgs(planRun); RaiseTestPlanRunStarted(e); }