Exemple #1
0
 public NunitPlatform(InitializeResponse initResponse)
 {
     this.initResponse = initResponse;
     timer             = new Timer(e => {
         if (pendingResponses.Count != 0)
         {
             sendMockResponse(pendingResponses.Dequeue());
         }
     }, null, 0, RESPONSE_DELAY);
 }
Exemple #2
0
 private UnitTestBase(InitializeResponse response)
 {
     this.response = response;
     platform      = new NunitPlatform(response);
 }
Exemple #3
0
 public NunitPlatform(InitializeResponse initResponse)
 {
     this.initResponse = initResponse;
 }