Example #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ClientWrapper"/> class.
 /// </summary>
 /// <param name="testRunnner">The test runnner.</param>
 /// <param name="updateReceiver">The update receiver.</param>
 public ClientWrapper(Client testRunnner, TestUpdateReceiver updateReceiver)
 {
     TestRunner = testRunnner;
     UpdateReceiver = updateReceiver;
 }
Example #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ClientProgram"/> class.
 /// </summary>
 /// <param name="options">Options, which were provided through command line</param>
 /// <param name="bootstrapperParameters">The bootstrapper parameters.</param>
 /// <param name="client">The client.</param>
 /// <param name="resolver">The resolver.</param>
 /// <param name="catcher">The catcher.</param>
 /// <param name="log">The log.</param>
 public ClientProgram(ClientParameters options, BootstrapperParameters bootstrapperParameters, Client client, AssemblyResolver resolver, ExceptionCatcher catcher, ILog log)
     : base(null, catcher, log, bootstrapperParameters)
 {
     this.options = options;
     this.client = client;
 }