public TestDelegateInvoker(IRun generator, IParameterizedCommand <object> block_command) : base(generator)
 {
     this.block_command = block_command;
 }
Example #2
0
 public BlockRun(bool is_test, IParameterizedCommand <TestTreeArgs <DelegateType> > block_action, IRun main_run) : base("block", is_test)
 {
     this.block_action = block_action;
     this.main_run     = main_run;
 }
 public ChainedParameterizedCommand(IParameterizedCommand <T> first, IParameterizedCommand <T> second)
 {
     this.first  = first;
     this.second = second;
 }