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

            if (testMonitor != null)
            {
                testMonitor.TestStepStarted();
            }
        }