示例#1
0
        protected void RaiseTestPlanRunStarted(TestPlanRunStartedEventArgs e)
        {
            var handler = TestPlanRunStarted;

            if (handler != null)
            {
                handler(this, e);
            }
        }
示例#2
0
        public override void OnTestPlanRunStart(TestPlanRun planRun)
        {
            TestPlanRunStartedEventArgs e = new TestPlanRunStartedEventArgs(planRun);

            RaiseTestPlanRunStarted(e);
        }