Tmx.TFSrvGetTestCaseCommand.Execute C# (CSharp) Method

Execute() private method

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

Usage Example

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