Example #1
0
        protected void RaiseTestPlanRunCompleted(TestPlanRunCompletedEventArgs e)
        {
            var handler = TestPlanRunCompleted;

            if (handler != null)
            {
                handler(this, e);
            }
        }
Example #2
0
        public override void OnTestPlanRunCompleted(TestPlanRun planRun, Stream logStream)
        {
            TestPlanRunCompletedEventArgs e = new TestPlanRunCompletedEventArgs(planRun, logStream);

            RaiseTestPlanRunCompleted(e);
        }