/// <summary> /// Fires the test assembly completed event. /// </summary> /// <param name="e">The event data.</param> protected internal virtual void OnTestAssemblyCompleted(TestAssemblyCompletedEventArgs e) { var handler = TestAssemblyCompleted; if (handler != null) { handler(this, e); } }
/// <summary> /// Calls the test assembly completed event. /// </summary> /// <param name="e">The event data.</param> public void SendTestAssemblyCompleted(TestAssemblyCompletedEventArgs e) { _harness.OnTestAssemblyCompleted(e); }