protected override void Handle(TestClassEndEvent e)
 {
     TestClassResults.Add(e.Result);
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="TestClassFinishedEventArgs"/> class.
 /// </summary>
 /// <param name="results">The results from running the tests in the class.</param>
 public TestClassFinishedEventArgs(TestClassResults results)
 {
     Results = results;
 }