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

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


   * @see com.eviware.soapui.model.testsuite.TestStep#run(com.eviware.soapui.model.testsuite.TestCaseRunner, com.eviware.soapui.model.testsuite.TestCaseRunContext)
   */
  @Override
  public TestStepResult run(TestCaseRunner testRunner, TestCaseRunContext testRunContext) {
    WsdlTestStepResult testStepResult = new WsdlTestStepResult(this);
    testStepResult.startTimer();
    try {
      String expandedExpression = testRunContext.expand(getExpression());
      double numResult = evaluator.evaluate(expandedExpression);
      setResult(numResult);
      testStepResult.setStatus(TestStepStatus.OK);
View Full Code Here


  }

  @Override
  public void actionPerformed(ActionEvent evt) {
    WsdlTestStepResult result = new WsdlTestStepResult(testStep);
    result.startTimer();
    TestCaseRunContext context = new MockTestRunContext(new MockTestRunner(testStep.getTestCase()), testStep);
    MockTestRunner runner = new MockTestRunner(testStep.getTestCase());
    try {
      testStep.run(runner, context);
    } finally {
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.