Package com.eviware.soapui.impl.wsdl.teststeps

Examples of com.eviware.soapui.impl.wsdl.teststeps.WsdlTestStepResult.stopTimer()


      testStepResult.setStatus(TestStepStatus.OK);
    } catch (EvaluationException e) {
      testStepResult.setStatus(TestStepStatus.FAILED);
      testStepResult.setError(e);
    } finally {
      testStepResult.stopTimer();
    }
    return testStepResult;
  }
 
  private String formatResult() {
View Full Code Here


    TestCaseRunContext context = new MockTestRunContext(new MockTestRunner(testStep.getTestCase()), testStep);
    MockTestRunner runner = new MockTestRunner(testStep.getTestCase());
    try {
      testStep.run(runner, context);
    } finally {
      result.stopTimer();
    }
  }
}
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.