示例#1
0
文件: StepRunner.cs 项目: mrkmg/StePP
        private void SetupNextAction(string actionName)
        {
            if (_killed)
            {
                return;
            }

            SetupActionOutput(actionName);
            _currentActionRunner = new ActionRunner(_actions[actionName], _currentActionOutput);
        }
示例#2
0
文件: StepRunner.cs 项目: mrkmg/StePP
 private void CleanupAction()
 {
     _currentActionRunner = null;
     CleanupActionOutput();
 }
示例#3
0
文件: StepRunner.cs 项目: mrkmg/StePP
 private void Cleanup() => _currentActionRunner = null;