Beispiel #1
0
        protected void RaiseTestStepRunStarted(TestStepRunStartedEventArgs e)
        {
            var handler = TestStepRunStarted;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Beispiel #2
0
        public override void OnTestStepRunStart(TestStepRun stepRun)
        {
            TestStepRunStartedEventArgs e = new TestStepRunStartedEventArgs(stepRun);

            RaiseTestStepRunStarted(e);
        }