Tmx.TFSrvGetTestSuiteCommand.Execute C# (CSharp) Method

Execute() private method

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

Usage Example

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