Tmx.TFSrvGetTestPlanCommand.Execute C# (CSharp) Method

Execute() private method

private Execute ( ) : void
return void
        internal override void Execute()
        {
            TFHelper.GetTestPlan(this.Cmdlet, this.Cmdlet.Name);
        }
    }

Usage Example

 protected override void BeginProcessing()
 {
     this.CheckCmdletParameters();
     
     TFSrvGetTestPlanCommand command =
         new TFSrvGetTestPlanCommand(this);
     command.Execute();
 }
All Usage Examples Of Tmx.TFSrvGetTestPlanCommand::Execute
TFSrvGetTestPlanCommand