private void onBeginningTestScriptObjectExecution(TestScriptObject testScriptObject, TestScriptObjectBeginExecutionArgs args)
        {
            TestTreeNode node = FindNode(testScriptObject);

            node.IsExecuting = true;
            node.UpdateUI();
            SelectedNode = node;
        }
示例#2
0
 private void onBeginningTestScriptObjectExecution(TestScriptObject testScriptObject, TestScriptObjectBeginExecutionArgs args)
 {
     if (testScriptObject is TestCase)
     {
         incrementLabelCounter(this.m_inprocessStatusBarLabel, m_inprogressLabelFormat);
         decrementLabelCounter(m_totalAvailableStatusBarLabel, m_totalLabelFormat);
     }
 }