Exemplo n.º 1
0
        /// <summary>
        /// Post a test result to the tree, changing the treeNode
        /// color to reflect success or failure. Overridden here
        /// to allow for moving nodes from one group to another
        /// based on the result of running the test.
        /// </summary>
        public override void OnTestFinished(ResultNode result)
        {
            base.OnTestFinished(result);

            if (_grouping != null)
            {
                _grouping.OnTestFinished(result);
            }
        }
Exemplo n.º 2
0
        /// <summary>
        /// Post a test result to the tree, changing the treeNode
        /// color to reflect success or failure. Overridden here
        /// to allow for moving nodes from one group to another
        /// based on the result of running the test.
        /// </summary>
        protected override void OnTestFinished(ResultNode result)
        {
            base.OnTestFinished(result);

            _grouping.OnTestFinished(result);
        }