private void TestStepFinished(object sender, TestStepFinishedEventArgs e)
        {
            TestMonitor testMonitor = GetTestMonitor(e.Test.Id);

            if (testMonitor != null)
            {
                testMonitor.TestStepFinished(e);
            }
        }