Example #1
0
        //protected static void RunStep(BaseTest test,
        //    Action action,
        //    string stepName,
        //    string expectedFault,
        //    bool acceptOtherFaults,
        //    bool allowNoFault)
        //{
        //    test.RunStep(action, stepName, expectedFault, acceptOtherFaults, allowNoFault);
        //}

        public static void RunStep(BaseTest test,
                                   Action action,
                                   string stepName)
        {
            test.RunStep(action, stepName);
        }
Example #2
0
 public virtual void Release(BaseTest test)
 {
     _semaphore.StopEvent.Close();
     _trafficListener.RequestSent      -= test.LogRequest;
     _trafficListener.ResponseReceived -= test.LogResponse;
 }
Example #3
0
 public void SetNesting(BaseTest test)
 {
     test.OnStepStarted   += new Action <StepResult>(test_OnStepStarted);
     test.OnStepCompleted += new StepCompleted(test_OnStepCompleted);
 }